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

#sgcolure-background-container {
    position: fixed;
    height: 100%;
    width: 100%;
    background-color: #fcfdf5;
}

#about-content-container {
    font-size: 1.2rem;
    max-width: 800px; /* Restrict width for better readability */
    width: 100%;
}


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

a {
    color: #5ca0d3;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* override the loading screen width */
#loading-screen {
    width: 100%
}

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

@media (max-width: 1000px) and (orientation: landscape) {
    #main {
        width: 100%;
    }
    .content-container {
        justify-content: normal;
    }
    #about-content-container {
        width: 600px;
    }
}