main {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}
form{
    width: 50%;
    background-color: green;
    border-radius: 20px;
    padding: 20px;
    color: white;
}
legend, label{
    color: white;
}
input{
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 20px;
}
form div{
    margin: 15px 0;
}
#flex1{
    display: flex;
    justify-content: center;
}
button{
    width: 200px;
    height: 50px;
    border-radius: 5px;
    background-color: rgb(102, 222, 84);
    color: white;
    border: none;
    transition: 0.05s;
    font-weight: bold;
    font-size: 24px
}
button:hover{
    background-color: red;
    font-size: 27px;
}
.lim-width{
    width: 200px;
    display: inline-block;
}
textarea{
    width: 400px;
    height: 100px;
}   