html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    background: #fafafa;
    font-family: 'Merriweather', Georgia, serif;
    color: #333;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#content-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

#main_content {
    max-width: 80vw;
    padding: 2rem;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.quote {
    font-size: 2.5rem;
    line-height: 1.6;
    color: #55555598;
    text-align: left;
    margin-bottom: 2rem;
}

.highlight {
    font-size: 3.5rem;
    font-weight: bold;
    color: #292929;
}

cite {
    display: block;
    font-size: 1.2rem;
    color: #55555598;
    text-align: right;
    font-style: normal;
    margin-top: 1rem;
}

cite a {
    color: #333;
    text-decoration: underline;
    transition: color 0.3s ease, text-decoration 0.3s ease;
}

cite a:hover {
    color: #000;
    text-decoration: none;
}

#inspired {
    width: 100%;
    text-align: center;
    font-size: 0.875rem;
    color: #777;
    margin-bottom: 0.5rem;
}

#inspired a {
    color: #333;
    text-decoration: underline;
}

#inspired a:hover {
    color: #000;
    text-decoration: none;
}

#physical-clock {
    width: 100%;
    text-align: center;
    font-size: 1.2rem;
    color: #777;
    margin-bottom: 2rem;
    
}

#physical-clock a {
    color: #333;
    text-decoration: underline;
}

#physical-clock a:hover {
    color: #000;
    text-decoration: none;
}





footer {
    width: 100%;
    text-align: center;
    font-size: 0.875rem;
    color: #555;
    padding-bottom: 1rem;
}

.footer-links {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #555;
    text-decoration: none;
}

.footer-links a:hover {
    text-decoration: underline;
}

.footer-copyright {
    font-size: 0.75rem;
    color: #555;
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    #main_content {
        padding: 1rem;
    }

    .quote {
        font-size: 2rem;
    }

    .highlight {
        font-size: 2.8rem;
    }

    cite {
        font-size: 1rem;
    }
    
    #inspired {
        font-size: 0.75rem;
    }

    .footer-links {
        font-size: 0.75rem;
    }

    .footer-copyright {
        font-size: 0.65rem;
    }
}

@media (max-width: 480px) {
    #main_content {
        padding: 1rem;
    }

    .quote {
        font-size: 1.6rem;
    }

    .highlight {
        font-size: 2.2rem;
    }

    cite {
        font-size: 0.875rem;
    }

    #inspired {
        font-size: 0.75rem;
    }

    .footer-links {
        font-size: 0.75rem;
    }

    .footer-copyright {
        font-size: 0.65rem;
    }
}
