body, html, #app {
    margin: 0;
    width: 100%;
    height: 100%;
    background-color: black
}

body {
    touch-action: none;
}

#app {
    height: 100%;
    font-family: "Montserrat", serif;
}

    #app a {
        text-decoration: none;
        color: yellow;
    }

.hero {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

h1, h2, h3, p {
    margin: 0;
    padding: 0;
    color: white;
    text-shadow: 0 0 20px rgba(0, 0, 0, 1);
    line-height: 100%;
    user-select: none;
    font-family: Arial, Helvetica, sans-serif;
}

h1 {
    font-size: 110px;
    font-weight: 700;
    text-transform: uppercase;
}

h2 {
    font-size: 50px;
    font-weight: 500;
    text-transform: uppercase;
}

h3 {
    font-size: 60px;
    font-weight: 450;
    text-transform: uppercase;
    color: white
}

#canvas {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    overflow: hidden;
}

a {
    color: yellow;
    font-weight: bold;
    font-size: 36px;
}

    a:hover {
        color: #ff0066 !important;
        text-shadow: 2px 2px 2px #FFDE00;
    }
