@font-face {
  font-family: TitleFont; 
  src: url(hamilton_title_font.ttf); 
}

body {
  background-image: url("skbg.jpg");
  background-size: cover;
  background-position: center;
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
}
.title-container {
  display: flex;
  align-items: center;    
  justify-content: center;  
  gap: 10px;               
  margin-top: 20px;
}
.title-img {
  width: 85px;             
  height: 85px;
  object-fit: contain;
}
h1 {
  text-align: center;
  font-family: TitleFont;
  font-size: 77px;
  color:#00111c;
}

.button-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 20px 0; 
  flex-wrap: wrap;
}

.custom-btn {
  background-color: #00111c;
  color: #fff;
  font-family: TitleFont, Arial, sans-serif;
  font-size: 28px;        /* smaller text */
  padding: 8px 18px;      /* smaller button height/width */
  border: 2px solid #060113;
  border-radius: 10px;
  cursor: pointer;
  box-shadow: 0 4px 0 #060113;  /* slightly shallower shadow */
  transition: all 0.3s ease;
}

.custom-btn:hover {
  background-color: #060113;
  transform: translateY(-3px);
  box-shadow: 0 8px 0 #00111c;
}

.custom-btn:active {
  transform: translateY(0);
  box-shadow: 0 3px 0 #00111c;
}

h2 {
  color: rgb(255,255,255); 
  margin-bottom: 10px;
  font-weight: bold;
  margin-left: -17px;
}

.main-container {
  display: flex;
  flex-direction: column; /* stack divs vertically ↓ */
  align-items: center;    /* center them horizontally */
  gap: 20px;              /* space between sections */
  padding: 20px;
}

/* 🎬 Individual boxes */
.plot,.universe,.links {
  background-image: url("bfbg.jpg");
  background-size: cover;
  background-position: center;
  color: #ffffff;
  width: 80%;              /* wider for vertical layout */
  max-width: 600px;        /* responsive max size */
  padding: 20px;
  border: 2px solid #061A40;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}