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

body {
    font-family: 'Bitcount Prop Single', monospace;
    background-color: #0a0e17;
    color: #ffffff;
    overflow: hidden;
    height: 100vh;
    width: 100vw;
}

canvas {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.container {
    position: relative;
    z-index: 2;
    height: 100vh;
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.content {
    padding: 2rem;
}

a {
    color: white;
    font-family: 'Bitcount Prop Single', monospace;
    font-weight: 400;
    font-size: 24px;
    text-decoration: none;
}