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

body {
    background: #080a0e;
    overflow: hidden;
    font-family: Georgia, 'Times New Roman', serif;
}

canvas {
    display: block;
    cursor: text;
}

.nav {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 100;
}

.nav a {
    color: rgba(140, 130, 150, 0.4);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.5s ease;
}

.nav a:hover {
    color: rgba(140, 130, 150, 0.8);
}
