
@import url('https://fonts.googleapis.com/css2?family=Bowlby+One+SC&family=Lexend+Exa:wght@100..900&display=swap');
*{
    box-sizing: border-box;
}
html, body{
    font-family: "Lexend Exa", sans-serif;
    font-size: 16px;
}
header{
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    position: absolute;
    width: 100%;
    z-index: 2;
    background-color: #00000064;
    border-radius: 0 0 30px 30px;
}
h1{
    font-weight: 700;
    color: #fb8561;
    text-shadow: 2px 2px 0 #ffffff, 2px -2px 0 #ffffff, -2px 2px 0 #ffffff, -2px -2px 0 #ffffff, 2px 0px 0 #ffffff, 0px 2px 0 #ffffff, -2px 0px 0 #ffffff, 0px -2px 0 #ffffff, 2px 2px 2px rgba(251,133,97,0);
    font-size: 50px;
}
.banner{
    background-image: linear-gradient(180deg, rgba(10, 0, 0, 0.5) 1%, rgba(10, 0, 0, 0.5) 100%), url(../image/banner.jpg);
    background-position: center;
    color: #ffffff;
    height: 100vh;
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
}
.banner .container{
    max-width: 860px;
}
.button {
    all: unset;
    cursor: pointer;
    display: inline-block;
    position: relative;
    z-index: 1;
    overflow: hidden;
    text-decoration: none;
    font-weight: 600;
    padding: 0.75em 1em;
    color: #fb8561;
    font-size: 20px;
    border: 0.15em solid #fb8561;
    border-radius: calc(0.75em + 0.5em + 0.15em);
    transition: 4s;
  }
  .button:before, .button:after {
    content: "";
    position: absolute;
    top: -1.5em;
    z-index: -1;
    width: 200%;
    aspect-ratio: 1;
    border: none;
    border-radius: 40%;
    background-color: #fb866163;
    transition: 4s;
  }
  .button:before {
    left: -80%;
    transform: translate3d(0, 5em, 0) rotate(-340deg);
  }
  .button:after {
    right: -80%;
    transform: translate3d(0, 5em, 0) rotate(390deg);
  }
  .button:hover, .button:focus {
    color: white;
  }
  .button:hover:before, .button:hover:after, .button:focus:before, .button:focus:after {
    transform: none;
    background-color: #fb8561;
  }
  .card{
    box-shadow: rgba(0, 0, 0, 0.09) 0px 2px 1px, rgba(0, 0, 0, 0.09) 0px 4px 2px, rgba(0, 0, 0, 0.09) 0px 8px 4px, rgba(0, 0, 0, 0.09) 0px 16px 8px, rgba(0, 0, 0, 0.09) 0px 32px 16px;
    border: none;
    padding: 20px;
    height: 100%;
  }
  .card li{
    list-style: square;
  }
  .small-banner .container{
    padding: 30px;
    background-color: #fb8561;
    color: #ffffff;
  }
  .title-banner{
    font-family: "Bowlby One SC", sans-serif;
    font-size: 60px;
  }
  footer{
    background-image: url(../image/footer-line.svg);
    background-size: 100%;
    background-position: top;
    background-repeat: no-repeat;
  }
  .disc{
    font-size: 14px;
  }
  .copyright{
    font-size: 12px;
    text-align: center;
  }
  a{
    color: #c24a26a8;
  }
  button [type=submit]{
    background-color: #ffffff !important;
  }
  #tnx{
    display: none;
    box-shadow: 0px 4px 15px rgba(48,59,87,0.15);
    border-radius: 15px;
    padding: 35px;
    background: #ffffff;
  }
@media screen and (max-width: 450px) {
    .banner h1{
        margin-top: 125px;
    }
}