@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

/* font-family: 'Poppins', sans-serif; */

*{
    margin: 0px;
    padding: 0px;
}

body{
    overflow-x: hidden;
    background-color: #001220;
    color: aliceblue;
    font-family: 'Poppins', sans-serif;
    min-height: 100vh;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.introduction{
    font-size: 1.5rem;
    text-align: justify;
}
.form-control, .form-label{
    margin-top: 15px;
    border-radius: 10px;
    padding: 15px;
    font-size: 1.5rem;
}
.form-label{
    padding: 0px;
}

@media only screen and (max-width: 1200px){

}

@media only screen and (max-width: 1024px){

}

@media only screen and (max-width: 768px){

}

@media only screen and (max-width: 480px){
    .introduction, .form-control, .form-label{
        font-size: 1rem;
    }
}