*,
*::before,
*::after{
    box-sizing: border-box;
    border: none;
    margin: 0;
    padding: 0;
}

img {
    display: block;
    max-width: 100%;
}

html{
    height: 100%;
    width: 100%;
    font-family: 'Open Sans', sans-serif;
    color: white;
    font-size: 62.5%;
    font-size: 1rem;
}


h1{
    font-size: 5rem;
}
body{
    height: 100%;
    width: 100%;
    background-color: #4A7FE8;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-container{
    display: flex;
    flex-direction: column;
    height: 90%;
    align-items: center;
    width: 80%;
    margin: 0 auto;
    max-width: 1200px;
}

.inner-main-container{
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    gap: 2rem;
}

.desc{
    text-align: center;
    margin-top: -1.5rem;
    font-size: 1.2rem;
    width: 70%;
}

.input-container{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.input{
    padding-left: 1rem;
    border: solid 1.8px white;
    background-color: #4A7FE8;
    width: 50rem;
    height: 30px;
    font-family: 'Open Sans', sans-serif;
    color: white;
}

.input::placeholder{
    color: white;
    font-family: 'Open Sans', sans-serif;
}

.input:focus{
    outline: none;
}

.dropdown-container{
    margin-top: 1rem;
}

.button-container{
    position: relative;
    z-index: 1;
    
}

i{
    position: absolute;
    bottom: 49%;
    left: 11%;
    z-index: 100;
}

button{
    cursor: pointer;
    padding: 0.7rem 0;
    padding-left: 2.2rem;
    padding-right: 1.4rem;
    position: relative;
    margin: 1rem;
}
.img-container, video{
    width: 80%;
    height: 80%;
}

.img-container img, video{
    width: 100%;
}


@media only screen and (max-width: 930px) {
    html {
        font-size: 55.5%;
      }

  }


  @media only screen and (max-width: 480px) {
    html {
        font-size: 48.5%;
      }

  }

  @media only screen and (max-width: 420px) {
    html {
        font-size: 44.5%;
      }

  }