.content-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: auto;
    flex-grow: 1;
    max-height: 100vh; /* Limits height to viewport */
    overflow-y: auto; /* Allows scrolling for content overflow */
}

h1 {
    font-size: 2.5rem;
    /*margin-bottom: 20px;*/
}


/* Button styling */
.center-page-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: center;
    margin: 0 0 0 0;
}

#center-page-img {
    margin: 0 0 0 0;
    width: 250px;
    height: 250px;
}

.center-page-button {
    padding: 10px 20px;
    font-size: 1.2rem;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    color: white;
    background-color: #003747;
    transition: background-color 0.3s ease;
}

/* Media query for mobile portrait and landscape */
@media (max-width: 1000px) {
    #main {
        width: 300px;
    }
}

@media (max-width: 1000px) and (orientation: landscape) {
    #main {
        width: 100%;
    }
}