#actual-comment-form {
    display: grid;
    grid-template-rows: repeat(4, 1fr);
}

#actual-comment-form h3 {
    justify-self: center;
}

#actual-comment-form input {
    width: 60%;
    place-self: center;
    height: 50%;
    text-align: center;
    background-color: #E7F2EF;
}

#actual-comment-form textarea {
    width: 75%;
    place-self: center;
    height: 75%;
    text-align: center;
    background-color: #E7F2EF;
}

#actual-comment-form button {
    width: 33%;
    place-self: center;
    height: 75%;
    background-color: #708993;
}