body, html {
    height: 100%; /* Ensure full height to allow for vertical centering */
    margin: 0; /* Reset default margin */
    background-color: #2C2C2C; /* Dark gray background */
    font-family: 'Roboto', sans-serif;
    color: #00FFFF; /* Cyan color text */
    display: flex;
    justify-content: center;
    align-items: center; /* Center content vertically */
    text-align: center;
}

.image-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center; /* Vertically center the images */
    padding: 20px; /* Add padding around the image row */
}

.link-image {
    max-height: 200px;
    width: auto; /* Adjust width to maintain aspect ratio */
    margin: 10px;
}

@media (max-width: 1200px) {
    .link-image {
        max-height: 150px; /* Adjust the size for smaller screens */
    }
}

@media (max-width: 768px) {
    .link-image {
        max-height: 100px; /* Further adjust for mobile screens */
    }
}

@media (max-width: 480px) {
    .image-links {
        flex-direction: column; /* Stack images vertically on very small screens */
    }

    .link-image {
        max-height: 100px;
        margin: 5px; /* Reduce margin for very small screens */
    }
}