/* style.css */

body {
    font-family: sans-serif;
    margin: 0;
    padding: 20px;
}

h3 {
    text-align: center;
    margin-bottom: 20px;
}

.comment-form {
    background-color: #fff;
    padding: 40px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    width: 100%; /* Make the form width 100% of its container */
}

.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 5px;
}

input[type="text"],
input[type="email"],
input[type="url"],
textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 3px;
    box-sizing: border-box;
}

button {
    background-color: #007bff;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
}

button:hover {
    background-color: #0069d9;
}

.comment {
    display: flex;
    margin-bottom: 20px;
}

.commentAvatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-right: 20px;
}