* {
    border: none;
    box-sizing: border-box;
    list-style-type: none;
    margin: 0px 0px 0px 0px;
    outline: none;
    padding: 0px 0px 0px 0px;
    scroll-behavior: smooth;
    text-decoration: none;
    font-family: sans-serif;
}

body {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 32px;
    background: rgba(15, 15, 15, 1);
}

h1 {
    font-size: 48px;
    color: rgba(200, 200, 200 ,1);
    text-align: center;
}

button {
    padding: 16px 32px 16px 32px;
    font-size: 24px;
    border-radius: 8px;
    background-color: rgba(200, 200, 200 ,1);
    cursor: pointer;
    transition: 0.25s ease;
}

button:hover {
    background-color: rgba(165, 165, 165, 1);
}

canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 999;
}