/* Make sure the page takes full height */
html, body {
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column; /* Stack elements vertically */
    justify-content: center;
    align-items: center;
    background-color: #e2cf89;
    text-align: center;
}

/* Style for the image */
.image-container img {
    max-width: 100%;
    max-height: 80vh; /* Prevents image from being too tall */
    display: block;
}

/* Styling for the quote container */
#quote-container {
    margin-top: 20px;
    max-width: 100%;
    font-family: Arial, sans-serif;
}

/* Main Quote Style */
#quote-main {
    font-size: 1.4em;
    font-weight: 700; /* Bold */
    color: #00688c;
}

/* Sub Quote Style (Thinner Font) */
#quote-sub {
    font-size: 1.2em;
    font-weight: 400; /* Lighter weight */
    color: #004b6b; /* Slightly darker than main quote */
    margin-top: 5px; /* Spacing between quotes */
}

/* Fake Loading Bar Styles */
#loading-bar-container {
    width: 60%;
    height: 8px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 5px;
    overflow: hidden;
    margin-top: 20px;
}

#loading-bar {
    width: 0%;
    height: 100%;
    background-color: #ff4500; /* Orange color */
    transition: width 0.1s linear;
}
