body{
    background-color: rgb(255, 255, 255);
    justify-items: center;
    align-items: center;
    height: 100vh;
}

div{
    margin-top: 10vh;
    min-height: 40vh;
    min-width: 50vw;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    justify-items: center;
    align-items: center;
}

input, button{
    min-width: 100%;
    min-height: 5vh;
    border: solid 1px black;
    border-radius: 20px;
}

input:hover{
    border: solid 3px black;
}

button{
    border: none;
    background-color: green;
}

button:hover{
    border: solid 2px rgb(96, 151, 14);
}

h2{
    color: red;
}

@media (max-width: 500px){
    div{
        margin-top: 5vh;
    }
}