body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    max-width: 100%;
    margin: 0;
    padding: 0 20px;
    background-color: #f4f4f4;
}

header,
main,
.comments-section {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}





.header-image {
    width: auto;
    height: 400px;
    border-radius: 8px;
    margin-bottom: 1rem;
    border-radius: 8px;
    margin-bottom: 20px;
}

h1,
h2,
h3 {
    color: #2c3e50;
}

h1 {
    border-bottom: 2px solid #3498db;
    padding-bottom: 10px;
    margin-top: 0;
}

h2 {
    margin-top: 30px;
}

ul,
ol {
    padding-left: 20px;
}

footer {
    background-color: black;
    margin-top: 20px;
    text-align: center;
    font-size: 0.9em;
    padding: 30px;
    color: #999;
    text-align: center;
    height: 120px;
}

.buy-button {
    display: inline-block;
    background-color: #3498db;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    margin-top: 20px;
    transition: background-color 0.3s ease;
}

.buy-button:hover {
    background-color: #2980b9;
}

.comment {
    border-bottom: 1px solid #eee;
    padding: 10px 0;
}

.comment-author {
    font-weight: bold;
}

.comment-date {
    color: #888;
    font-size: 0.9em;
}

.comment-form textarea,
.comment-form input[type="text"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.comment-form input[type="submit"] {
    background-color: #3498db;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
}

.comment-form input[type="submit"]:hover {
    background-color: #2980b9;
}

.interaction-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    margin: 20px 0;
}

.like-dislike button {
    background: none;
    border: none;
    font-size: 1.2em;
    cursor: pointer;
    padding: 5px 10px;
}

.like-dislike span {
    margin-left: 5px;
}

.views {
    font-size: 0.9em;
    color: #888;
}

a {
    text-decoration: none;
    color: #3498db;
}

