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

body {
    overflow: hidden;
    background: linear-gradient(180deg, 
        #4a7c78 0%,     /* muted teal */
        #6b9b9a 20%,    /* lighter teal */
        #c7a88a 60%,    /* warm tan/rust */
        #b8806a 80%,    /* rust */
        #8b5a4a 100%    /* deep rust */
    );
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    font-family: 'Georgia', serif;
}

canvas {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.title {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(43, 62, 59, 0.85);
    font-size: 2rem;
    font-weight: normal;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    pointer-events: none;
    z-index: 10;
}

@media (max-width: 768px) {
    .title {
        font-size: 1.4rem;
        letter-spacing: 0.2em;
        bottom: 50px;
    }
}