html,
body {
    margin: 0px;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

canvas {
    position: fixed;
    pointer-events: none;
    width: 100%;
    height: 100%;
}

#canvas {
    z-index: 1;
}

#bg-canvas {
    z-index: -1;
}

#content {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    position: relative;
}

#controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: .5rem;
    position: absolute;
    bottom: 0;
    right: 0;
    padding: .5rem 1rem;
    background-color: rgba(205, 235, 247, .5);
    z-index: 2;
}

#wind-display {
    width: 2em;
}

h1 {
    font-family: Arial Black, sans-serif;
    font-size: 15vw;
    color: #375560;
    text-shadow: 0 0 4px #cdebf7;
    line-height: 1;
    text-align: center;
    transform: scaleY(1.1);
    z-index: 0;
    opacity: .25;
}

h1 small {
    font-size: 2rem;
    display: block;
}