@font-face {
    font-family: 'Futura';
    src: url('Assets/FuturaLT.ttf') format('truetype');
    font-weight: normal; /* or 'bold' if needed */
    font-style: normal; /* or 'italic' if needed */
}

body {
  background-color: rgb(42, 42, 42);
  color: rgb(255, 255, 255);
  font-family: 'Futura', 'Trebuchet MS', sans-serif;
} 

.overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: url('Assets/overlay.png') no-repeat center center;
  background-size: cover;
  pointer-events: none;
  z-index: 9999;
}

.main-content {
  position: relative;
  max-width: 1900px;
  margin: auto;
  padding: 200px 150px 200px 350px; /* top right bottom left */
  z-index: 9998;
}

.header-button {
    display: inline-block;
    padding: 10px 10px;
    color: #fff;
    text-decoration: none;
    border-radius: 10px;
    transition: background-color 0.5s;
    position: relative;
    padding-left: 17px;
    margin-right: 10px; 
}

header {
  top: 20vh;              
  left: 40%;         
  text-align: center;  
  width: auto;       
}

footer {
  position: fixed;       
  bottom: 0;             
  left: 50%;            
  transform: translateX(-50%);
  text-align: center;    
  width: auto;           
  padding-bottom: 15vh;
}

.modal {
  width: 1000px;
  height: 750px;
  
  border: none; 
  border-radius: 10px;
  background-image: url('Assets/modal_background.png');
  background-size: cover;
  background-position: center;
  color: white;
}

.modal-inner {
  position: relative;
  top: 120px;
  left:200px;
  font-size: 20px;
}

.header-button img {
  display: block;
  transition: filter 0.7s ease;
  border-radius: 10px;
}

.header-button:hover img {
  filter: brightness(1.5); 
}

@media (max-width: 768px) {
  .main-content {
    max-width: 95%;
    padding: 40px; 
    padding-top: 15vh;
    padding-bottom: 30vh;
    padding-left: 80px; 
  }

  .overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: url('Assets/mobile_overlay.png') no-repeat center center;
  background-size: 100% 100%;
  background-attachment: scroll;
}

  .header-button {
    display: block;
    margin-bottom: 15px;
    margin-right: 0;
  }
}