* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body {
    min-height: 100vh;

    font-family: Arial, Helvetica, sans-serif;

    background: #f5f5f5;

    display: flex;
    justify-content: center;
    align-items: center;

    padding: 20px;
}


.comment-page {
    width: 100%;

    display: flex;
    justify-content: center;
    align-items: center;
}


.comment-card {
    width: 100%;
    max-width: 500px;

    background: white;

    padding: 40px;

    border-radius: 25px;

    text-align: center;

    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.15);
}


.comment-card h1 {
    margin-bottom: 10px;

    color: #222;
}


.comment-card p {
    color: #666;

    margin-bottom: 25px;
}


#comment {
    width: 100%;

    min-height: 160px;

    resize: vertical;

    padding: 15px;

    border: 1px solid #ddd;

    border-radius: 12px;

    font-family: inherit;

    font-size: 16px;

    outline: none;
}


#comment:focus {
    border-color: #b61a09;
}


.comment-card button {
    margin-top: 20px;

    padding: 12px 25px;

    border: none;

    border-radius: 10px;

    background: #b61a09;

    color: white;

    font-size: 16px;

    cursor: pointer;
}