body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #f0f0f0; /* You can change the background color */
}

.container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.logo {
    width: 100%;
    max-width: 300px;
    height: auto;
    max-height: 250px;
    /* Ensures the image scales down responsively */
}

.footer {
    background-color: #333; /* You can change the footer background color */
    color: #fff; /* You can change the footer text color */
    padding: 10px 0;
    width: 100%;
    text-align: center;
}

.footer a {
    color: #fff; /* You can change the link color */
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

@media (max-width: 320px) {
    .logo {
        max-width: 90%; /* Adjusts the logo size for very small screens */
        max-height: auto;
    }
}
