html, body {
    margin: 0;
    padding: 0;
}

body {
    background-color: grey;
    font-family: monospace;
}

h1 {
    margin: 0;
    font-size: 5vh;
}

h2 {
    font-size: 2.5vh;
}

h3 {
    font-size: 1.5vh;;
}

a {
    color: #00ff00;
}

a:visited {
    color: #00ff00;
}

#main {
    position: relative;
    padding: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: black;
}

#main-text {
    position: absolute;
    color: white;
    width: 100%;
    height: 30%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#main-links {
    padding-bottom: 5%;
    font-size: 2vh;
    position: absolute;
    color: white;
    width: 100%;
    text-align: center;
    bottom: 0;
    display: flex;
    gap: 20px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#scene-container {
    width: 100%;
    height: 100%;
}