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

body {
    background: #1a0a0a;
    overflow: hidden;
    cursor: pointer;
    font-family: 'Playfair Display', serif;
}

canvas {
    display: block;
}

#footer {
    position: fixed;
    bottom: 12px;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 10;
    pointer-events: none;
}

#footer a {
    pointer-events: auto;
    font-family: 'Crimson Pro', serif;
    font-size: 13px;
    letter-spacing: 2px;
    text-decoration: none;
    color: #a08060;
    opacity: 0.6;
    transition: opacity 0.3s;
    text-transform: uppercase;
}

#footer a:hover {
    opacity: 1;
}