/* poppin font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
/* Inter font */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap");

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Inter",sans-serif;
    transition: all 0.1s ease-in-out;
}
body{
    height: 100%;
    background: linear-gradient(
        to right,
        #ff08b1 50%,
        #1ebcec 50%
        ) fixed;
    }
    .container{
        
        overflow-y: scroll;
    width: 75vw;
    height: 75vh;
    background-color: #ffffff;
    padding: 50px 40px;
    position: absolute;
    transform: translate(-50%,-50%);
    top: 50%;
    left: 50%;
    border-radius: 15px;
    box-shadow: 0 20px 35px rgba(60,60,60,0.2);
}
::-webkit-scrollbar{
    display: none;
}

.wrapper{
    display: flex;
    justify-content: space-around;
    position: sticky;
    background: #f3f3f3;
    top: -51px;
    padding: 22px 7px;
}
.wrapper input{
    width: 60%;
    padding: 10px 5px;
    border-radius: 3px;
    border: 1px solid #201d2e;
}
.wrapper button{
    width: 30%;
    background-color: #ff08b1;
    border: none;
    outline: none;
    cursor: pointer;
    color: #ffffff;
    border-radius: 3px;
}
.container p{
    line-height: 35px;
    text-align: justify;
    margin-top: 30px;
}
mark{
    background-color: #ffdd4b;
}


@media (max-width: 768px) {
    .container {
        width: 90vw;
    height: 90vh;
    }
}