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