* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    height: 100%;
    width: 100%;
}

#main {
    height: 100vh;
    width: 100vw;
    background-color: rgb(0, 0, 0);
    position: relative;
}

#page {
    height: 100vh;
    width: 100vw;
    background-color: rgb(16, 22, 25);
    position: relative;
}

#nav {
    width: 100vw;
    height: 10vh;
}