/* Visitors Section Styling */
.visitors {
    background-color: white; /* Ensures the background is white */
    padding: 20px; /* Adds some padding around the content */
    text-align: center; /* Centers the text */
    margin: 20px 0; /* Adds margin above and below the section for spacing */
    box-shadow: 0 2px 4px rgba(0,0,0,0.1); /* Adds a subtle shadow for depth */
    border-radius: 8px; /* Rounds the corners */
}

.visitors h2 {
    color: #333; /* Dark color for the subheading for contrast */
    margin-bottom: 10px; /* Adds spacing between the subheading and the main visitor count */
    font-size: 1.5rem; /* Sets a moderate size for the subheading */
}

.visitors h1 {
    color: #007BFF; /* A vibrant color for the main visitor count */
    font-size: 2.5rem; /* Makes the visitor count larger and more prominent */
    margin: 0; /* Removes default margin for clean spacing control */
}

.visitors #visitorCount {
    font-weight: bold; /* Makes the actual count bolder */
}