.main-content {
    max-width: 1200px;
    /* text-align: center; */
    padding: 40px 20px;
    transition: 0.5s;
}

.feedback-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 20px;
    width: 100%;
    max-height: 2000px;
    opacity: 1;
    transition: 0.5s;
}
.feedback-grid.hide {
    max-height: 0;
    opacity: 0;
    transition: 0.5s;
}

.feedback-text { /*, .coffee-modifiers, .hot-chocolate-modifiers {*/
    width: 100%;
    font-family: var(--font-body);
    /* margin: 0 0 10px; */
    /* cursor: pointer; */
    font-size: 30px;
}
textarea {
    resize: vertical;
    height: 16em;
}

.thanks {
    font-size: 35px;
}

@media screen and (max-width: 800px) {
    .main-content {
        padding: 40px 10px;
    }
    textarea {
        height: 13em;
    }
}

@media screen and (max-width: 400px) {
    .logo {
        display: none;
    }
}