.overpass-font {
  font-family: "Overpass", sans-serif;
  font-optical-sizing: auto;
  font-weight: 100;
  font-style: normal;
}

*{
    margin: 0;
    font-family: "Overpass", sans-serif;
}

body {
    /* #04af99 */
    background-color:#04af99;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.contain {
    background-color:#adf5ec;
    border-radius: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.39);
    position: relative;
    overflow: hidden;
    width: 500px;
    max-width: 100%;
    min-height: 350px;
}

.contain span{
    font-size: 18px;
}

.contain button{
    background-color: #84f1e3;
    font-size: 18px;
    padding: 5px 45px;
    border: 2.7px solid;
    letter-spacing: 0.6px;
    margin-top: 35px;
}

#faq-button{
    font-size: 15px;
    background-color: #adf5ec;
    border: none;
    display: flex;
    justify-content: center;
    position: absolute;
    padding: 1px 20px;
    bottom: 5px;
    left: 230px;
    right: 250px;
}

.contain form{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: absolute;
    left: 50px;
    right: 50px;
    height: 100%;
}

.contain input{
    background-color: aliceblue;
    margin: 5px;
    padding: 5px 15px;
    font-size: 16px;
}

.popup-overlay{
    position: fixed;
    background-color: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
    display: none;
    animation: popup-in 0.5s forwards;
}

@keyframes popup-in {
    0%{opacity: 0;}
    100%{opacity: 1;}
}

.popup{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #adf5ec;
    padding: 7px 25px;
    border-radius: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.39);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.popup button{
    background-color: #84f1e3;
    font-size: 15px;
    padding: 5px 45px;
    border: 2.7px solid;
    letter-spacing: 0.6px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.popup img{
    margin-top: 5px;
}

button:active{
    outline-color: black;
    outline-style: solid;
    outline-width: 0.7px;
}

button:hover{
    background-color: #3dffe5;
}