@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;
  }

        /* Header */

  .header {
    position: relative;
  }
    .div {
    display: flex;
    justify-content: center;
}
    .head-img {
    height: 15vh;
    margin-top: 3vh;
}
    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;
    }
  }


        /* line */

      .line {
        width: 30%;
        height: 0.9px;
        border: 0 none;
        margin-right: auto;
        margin-left: auto;
        margin-top: 15px;
        margin-bottom: 15px;
        background-color: #ffffffba;
      }


      @media (max-width: 767px) {      
        .line {
          width: 60%;
        }
      }

      /* Back home btn */

  .bc-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 45px;
}

  .back-btn {
    padding: 10px 20px;
    font-size: 12px;
    background-color: #ffffff2f;
    color: #fff;
    border: 0;
    border-radius: 10px;
    cursor: pointer;
    text-decoration: none;
}



        /* Menu  */

.button-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
  
  .button {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #12433d;
    color: #fff;
    padding: 25px;
    font-size: 16px;
    border-radius: 4px;
    text-decoration: none;
  }
  
  .button img {
    max-width: 100%;
    height: auto;
    display: block;
    margin-bottom: 10px;
  }
  
  @media (max-width: 600px) {
    .button {
      padding: 15px;
      font-size: 14px;
    }
  }

          /* Footer  */

footer {
  bottom: 0;
  left: 0;
  right: 0;
  height: auto;
  position: absolute;
  width: 100%;
  padding-top: 8px;
  color: #fff;
  height: 0px;
  }
  
  footer p {
    margin: 0;
    text-align: center;
  }
  .footer {
    text-align: center;
  }
  
  .footer a {
    display: inline-block;
    margin: 0 10px;
  }
  
  .footer img {
    width: 30px; 
    height: 30px;
  }
  @media (max-width: 600px) {
    footer {
      padding: 8px;
    }
    
    p {
      font-size: 14px;
    }

  }
  .box-item {
    height: 100%;
    padding: 20px;
    display: flex;
    flex-direction: row;
    place-items: center;
    flex-wrap: wrap;
    gap: 43px;
    justify-items: center;
    justify-content: center;
  }
  .box {
    display: flex;
    flex-direction: row;
    place-items: center;
    justify-content: space-between;
    width: 50vh;
    border-radius: 20px;
    height: 16vh;
    background-color: #ffffff21;
}
.box > .box-left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    padding: 20px;
}
.box > .box-img{
  height: 100px;
  width: 100px;
  right: 10px;
  border-radius: 10px;
}
.box-left > .box-title{
  font-size: 1.2rem;
  top: -10px;
  color: #ffffffe8;
  font-weight: 100;
}
.box-left .box-description{
  font-size: 0.9rem;
  color: #ffffffe8;
  font-weight: 100;
  top: -5px;
}
.box-left .box-price{
  font-size: 0.9rem;
  color: #ffffffe8;
  font-weight: 100;
  top: 10px;
}

h1{
  font-size: 2.5vh;
  text-align: center;
  color: #fff;
}


