#contenedor{
    padding: 30px;
    text-align: center;
}

form{
    display: flex;
    flex-direction: column;
    gap: 25px;
}

#comentario{
    outline: none;
    font-size: 1.5rem; 
}

.botones{
    width: 50%;
    margin: 0px auto;
}

.boton{
    border: none;
    outline: none;
    height: 50px;
    width: 150px;
    font-size: 1.5rem;
    border-radius: 10px;
    background: #28B463;
    margin: 20px;
    transition: all 0.1s ease;
}

.boton:hover {
    transform: scale(1.1);
    background: #196F3D;
}
