<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* style.css */

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #000000;
    color: #FF0000;
    font-family: 'Aptos', sans-serif;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

main {
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 5px solid #FF0000;
    box-sizing: border-box;
}

.title {
    font-family: 'Gabriela', serif;
    font-size: 5vw;
    text-shadow: 2px 2px 4px #330000;
    margin: 0;
    padding: 20px;
}

#clock {
    font-size: 40vw;
    font-weight: bold;
    text-shadow: 3px 3px 6px #330000;
    line-height: 1;
}

@media (max-width: 768px) {
    main {
        width: calc(100% - 10px);
        height: calc(100% - 10px);
        border: 2px solid #FF0000;
    }

    .title {
        font-size: 8vw;
    }

    #clock {
        font-size: 35vw;
    }
}</pre></body></html>