/* General body styling */
body, html {
    height: 100%;
    margin: 0;
    font-family: 'Arial', sans-serif; /* Example of a modern font */
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
}

/* Styling for the logo container */
.logo-container {
    text-align: center;
    width: 100%;
}

#logo {
    font-size: 48px; /* Example font size */
    font-weight: bold; /* Make the logo stand out */
    color: black; /* Logo color */
}

/* Responsive design adjustments */
@media (max-width: 600px) {
    #logo {
        font-size: 24px; /* Smaller font size for smaller screens */
    }
}
