main{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

form{
    width: 50%;
    background-color: black;
    border-radius: 10px;
    padding: 10px;
}

legend, label{
    color: lime;
}

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: black;
    color: lime;
    border: none;
    transition: 1s;
    font-weight: bold;
    font-size: 10px;
}

button:hover{
    background-color: white;
    font-size: 10px;
}

textarea{
    width: 910px;
    height: 210px;
}

html {
    background-color: black;
}

#target1{
    display: block;
}