*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    background: linear-gradient(90deg,lightpink 1%,white 99% );
}
header{
    /* border: 2px solid grey; */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    /* margin: 0.5rem 2rem; */
}
header>section>img{
    height: 35vh;
    margin-bottom: 1.2rem;
}
header>section>h2{
    font-size: 2.3rem;
    color:rgb(66, 11, 41);
}

.form{
    display: flex;
    align-items:center;
    justify-content: center;
    margin-top: 45px;
}
.form input{
    border: 1px solid palevioletred;
    padding: 10px 25px;
    margin: 0px 15px;
    outline: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: bold;
}
.form input[type="submit"]{
    background: deeppink;
    color:white;
    cursor: pointer;
}
.form input[type="submit"]:hover{
    color:deeppink;
    background: white;
    transition: all 0.3s ease;
}
footer{
    display: flex;
    align-items: center;
    justify-content:center;
    flex-direction: column;
    margin-top: 2%;
    }
footer span#footer-text{
    margin-top: 30px;
    font-size: 3rem;
    font-weight: bold;
    font-style: italic;
    color:rgb(66, 11, 41);
}
span#info{
    margin-top:36vh;
    color:rgb(66, 11, 41);
    /* opacity: 0.9; */
    font-size: 0.89rem;
}

@media screen and (max-width:714px) {
    .form{
        flex-direction: column;
    }
    header>section>img{
        height: 20vh;
        margin-bottom: 0.8rem;
    }
    header>section>h2{
        font-size: 1.3rem;
        color:rgb(66, 11, 41);
    }
    .form{
        margin-top: 20px;
    }
    .form input{
        border: 1px solid palevioletred;
        padding: 3px 10px;
        margin: 4px 6px;
        outline: none;
        border-radius: 5px;
        font-size: 0.6rem;
        font-weight: bold;
    }
    footer span#footer-text{
        margin-top: 15vh;
        font-size: 1.3rem;
        font-weight: bold;
        font-style: italic;
        color:rgb(66, 11, 41);
    }
    span#info{
        margin-top:50vh;
        color:rgb(66, 11, 41);
        /* opacity: 0.9; */
        font-size: 0.6rem;
    }

}