.top-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
    background-color: #0079c2;
    color: white;
}

/* Flex container for logo and contact info */
.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 10px 20px;
}

.header-content img {
    max-height: 75px; /* Adjust as needed */
}

.contact-info {
    display: flex;
    flex-direction: column; /* Change from row to column */
    gap: 10px; /* Adjust spacing as needed */
    align-items: center; /* Center align the text */
}


.contact-info a {
    color: white;
    text-decoration: none;
    font-size: 14px;
}

.contact-info a:hover {
    text-decoration: underline;
}

.nav-container {
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
}

nav {
    display: inline-block;
    white-space: nowrap;
}

nav a {
    display: inline-block;
    margin-right: 10px;
    color: white;
    text-decoration: none;
}

nav a:hover {
    text-decoration: underline;
}

.random-image-container {
    width: 100%;
    display: flex;
    justify-content: center;
    overflow: hidden;
}

.random-image-container img {
    max-width: 100%;
    height: auto;
    object-fit: contain; /* Ensures the image maintains aspect ratio */
}


@media (max-width: 600px) {
    .header-content {
        flex-direction: column;
        align-items: center;
    }

    .contact-info {
        flex-direction: column;
        align-items: center;
    }
}
@media only screen and (max-width: 768px) {
    .random-image-container img {
        width: 100%;
        height: auto;
    }
}
