@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@300&display=swap');
*{
    position: relative;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  body { 
    height: 100%;
    min-height: 100vh;
    background-color: rgb(18, 67, 61);
    font-family: 'Nunito', sans-serif;
  }

  .background-image {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-image: url('/assets/bg-image.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.1; 
    z-index: -1;  
  }

    .header {
    position: relative;
  }
    .div {
    display: flex;
    justify-content: center;
}
    .head-img {
    height: 20vh;
    margin-top: 5vh;
}
    section{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
    h1{
    font-size: 5vh; 
    color: #ffffff; 
    margin-top: 10px;
}
    hr{
    width: 50vh;
}
@media (max-width: 767px) {
    hr {
      margin: 10px 0;
      width: 35vh;
    }
  }
    p{
      text-align: center;
      color: rgb(255, 255, 255);
      margin-block-start: 1em;
      margin-block-end: 0em;
      font-size: 2.3vh;
    }
    .box{
        width: 40vh;
    }
    .select {
        position: relative;
        display: inline-block;
        margin-top: 3vh;
        cursor: pointer;
      }
      
      .select select {
        width: 200px;
        padding: 10px;
        font-size: 16px;
        border: none;
        border-radius: 10px;
        appearance: none;
        cursor: pointer;
        text-align: center;
        color: black;
    }
      .select::after {
        content: '\25BE';
        position: absolute;
        top: 50%;
        right: 10px;
        transform: translateY(-50%);
        pointer-events: none;
        cursor: pointer;
      }
      footer {
        position: fixed;
        left: 0;
        bottom: 0;
        width: 100%;
        padding: 10px;
        text-align: center;
        font-size: 14px;
        color: #666;
      }
      
      footer p {
        margin: 0;
      }

      .button {
        background-color: #ffffff;
        color: rgb(0, 0, 0);
        text-decoration: none;
        border: 2px solid transparent;
        padding: 9px 70px;
        border-radius: 30px;
        transition: .4s;
        margin-top: 15px;
        cursor: pointer;
    }

.modal {
    display: none; 
    position: fixed;
    z-index: 1; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%;
    overflow: auto; 
  }
  
  .modal-content {
    background-color: #1c514e;
    margin: 10% auto;
    padding: 20px;
    border: 1px solid #ffffffde;
    width: 30%;
    border-radius: 20px;
    display: grid;
    margin-top: 150px;
    justify-items: center;
    transition: height 0.5s;
    animation: fadeDown 0.3s;
}

.modal-button {
  height: 35px;
  width: 20vh;
  border-radius: 30px;
  right: 0vh;
  font-size: 18px;
  cursor: pointer;
  background-color: #1c514e;
  color: white;
  border: 0;
  animation: fadeDown 0.3s;
}

.line {
  width: 75%;
  height: 0.9px;
  border: 0 none;
  margin-right: auto;
  margin-left: auto;
  margin-top: 15px;
  margin-bottom: 15px;
  background-color: #ffffff1f;
}
@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 767px) {
  .modal-content {
    width: 90%;
    margin-top: 100px;
    padding: 10px;
  }

  .modal-button {
    width: 150px;
  }

  .line {
    width: 90%;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .modal-content {
    width: 50%;
    margin-top: 120px;
  }
}

@media (min-width: 1024px) {
  .modal-content {
    width: 30%;
    margin-top: 150px;
  }
}


  .footer {
    text-align: center;
  }
  
  .footer a {
    display: inline-block;
    margin: 0 10px;
  }
  
  .footer img {
    width: 30px; 
    height: 30px;
  }

  h2 {
    display: inline-flex;
    font-size: 2vh;
    color: white;
    margin-bottom: 20px;
    justify-content: center;
}
.close {
  color: #fff;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  position: absolute;
  top: 10px;
  right: 10px;
  animation: fadeDown 0.5s;
}
