
h2.comments {
    text-align: center;
    margin-top:50px;
}

#comments-container {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #f9f9f9;
}

#comments-container > div {
    margin-bottom: 10px;
}

#commentForm {
    max-width: 600px;
    margin: 20px auto;
    text-align: left;
}

#commentForm label {
    display: block;
    margin-bottom: 5px;
}

#commentForm input[type="text"],
#commentForm textarea {
    width: calc(100% - 10px);
    margin-bottom: 10px;
    padding: 5px;
}

#commentForm button {
    padding: 8px 20px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

#commentForm button:hover {
    background-color: #0056b3;
}

.container {
    max-width: 800px;
    margin: 20px auto;
    padding: 0 20px;
    text-align: left;
}

h1, h2 {
    margin-top: 20px;
}

.comment-box {
    max-width: 500px; /* Set maximum width */
    margin: 0 auto; /* Center the comment box horizontally */
    margin-bottom: 20px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #f9f9f9;
    text-align: left;
}


.comment {
    margin-bottom: 10px;
}

#commentForm {
    margin-bottom: 20px;
    text-align: left;
}

#commentForm label {
    display: block;
    margin-bottom: 5px;
}

#commentForm input[type="text"],
#commentForm textarea {
    width: calc(100% - 10px);
    margin-bottom: 10px;
    padding: 5px;
}

#commentForm button {
    padding: 8px 20px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

#commentForm button:hover {
    background-color: #0056b3;
}

/* Centering h2 elements with class "comments" */
h2.comments {
    text-align: center;
}