/* Base styling for body and HTML */
body, html {
    font-family: 'Helvetica', 'Arial', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #000;
}

/* Responsive font size adjustment for smaller screens */
@media only screen and (max-width: 1024px) {
    body {
        font-size: 16px;
    }
}

/* Container for comment form with a maximum width and centered margin */
.comment-form-wrap {
    max-width: 600px;
    margin: 0 auto;
}

/* Responsive images that scale to 100% width and maintain aspect ratio */
img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Links styling with a color and removal of underlines */
a {
    color: #0066cc;
    text-decoration: none;
}

/* Hover effect for links */
a:hover {
    text-decoration: underline;
}

