* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    overflow: hidden;
    background: #e8ddd3;
    font-family: 'Quicksand', sans-serif;
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

#digital-time {
    position: fixed;
    bottom: 14%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    font-family: 'Quicksand', sans-serif;
    font-weight: 300;
    font-size: clamp(24px, 5vw, 48px);
    letter-spacing: 0.15em;
    color: rgba(120, 100, 90, 0.7);
    text-align: center;
    pointer-events: none;
    transition: opacity 1.5s ease-in-out;
}

#mood-text {
    position: fixed;
    bottom: 6%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    font-family: 'Quicksand', sans-serif;
    font-weight: 400;
    font-size: clamp(14px, 2.5vw, 22px);
    letter-spacing: 0.3em;
    text-transform: lowercase;
    color: rgba(140, 120, 110, 0.5);
    text-align: center;
    pointer-events: none;
    opacity: 0;
    transition: opacity 3s ease-in-out;
    white-space: nowrap;
}

#mood-text.visible {
    opacity: 1;
}

#footer {
    position: fixed;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    font-family: 'Quicksand', sans-serif;
    font-size: 11px;
    letter-spacing: 0.1em;
}

#footer a {
    color: rgba(160, 140, 130, 0.35);
    text-decoration: none;
    transition: color 2s ease;
}

#footer a:hover {
    color: rgba(160, 140, 130, 0.6);
}