*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    min-width: 0;
    font-family: sans-serif;
    text-transform: uppercase;
    font-weight: 400;
    color: white;
}

html, body{
    background-color: black;
}

canvas{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100svh;
    /* background-color: red; */
}

header{
    position: relative;
    height: 60px;
    width: 100%;
    display: flex;
    align-items: center;
    padding-left: 2rem;
    background: black;
}

header h1{
    font-size: 1rem;
}

.hero {
    position: relative;
    height: calc(100svh - 60px);
}

.hero h1{
    position: absolute;
    bottom: 2rem;
    left: 2rem
}