html,
body {
    margin: 0;
    padding: 0;
    overflow: hidden;
    height: 100%;
    font-family: 'Arial', sans-serif;
    color: white;
}

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

main {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 1em;
}

h1 {
    font-size: 3em;
    margin: 0.5em 0;
}

p {
    font-size: 1.2em;
    max-width: 600px;
    margin: 0.5em auto;
    color: white;
}

.logo {
    font-family: 'Courier New', Courier, monospace;
    color: aqua;
    background-color: #070707;
    padding: 1px;
}