body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    overflow-x: hidden;
}

#first-screen, #second-screen {
    width: 100vw;
    height: 100vh;
}

#first-screen {
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100vw;
    height: 100vh;
    z-index: 2;
}

#logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    z-index: 99;
    width: 100%;
    height: 30vh;
}

#logo {
    max-height: 100%;
    max-width: 100%;
    width: auto;
    height: auto;
}

canvas {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

#second-screen {
    background-color: #202447;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    height: auto;
    min-height: 100vh;
}

.top-bar {
    width: 100vw;
    height: 10vh;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
}

.top-logo {
    height: 9vh;
    max-width: 150px;
}

.text-container {
    text-align: center;
    color: #c9c9c9;
    font-family: 'Courier', monospace;
    margin-top: auto;
    margin-bottom: auto;
}

.text-line1 {
    font-size: 5vh;
    margin: 0;
}

.text-line2 {
    font-size: 3vh;
    margin: 0;
}

.text-line3 {
    font-size: 2vh;
    margin: 0;
}
