body {
    background-color: #0B2027;
    height: fit-content;
    width: 100vw;
    padding: 0;
    margin: 0;
}

nav {
    width: 100vw;
    height: auto;
    padding: 0;
    margin: 0;
    top: 0;
    position: -webkit-sticky;
    position: sticky;
    background-color: #33A1FD;
    overflow: hidden;
    box-shadow: 0px 10px 10px rgb(36, 36, 77);
}

nav ul {
    list-style-type: none; 
    display: flex;
    flex-direction: row;
    justify-content: center;
}

nav ul li a{
    font-size: 2.5vw;
    text-align: center;
    color: #F0E7D8;
    font-weight: bold;
    padding: 16px;
}

nav ul li a:hover{
    color: #0B2027;
}

#main-page {
    background-color: antiquewhite;
    height: fit-content;
    min-height: 100vh;
    width: 80vw;
    padding: 25px;
    margin: 0 auto;
    box-shadow: 12px 0 15px -4px rgb(36, 36, 77), -12px 0 8px -4px rgb(36, 36, 77);
}

.dash-seperater {
    text-align: center;
    font-weight: bold;
    font-size: 10.0vw;
}

pre {
    background-color: #0B2027;
    color: aliceblue;
}

footer {
    width: 100vw;
    height: 10vw;
    padding: 0;
    margin: 0;
    bottom: 0;
    background-color: #33A1FD;
}

footer p {
    color: white;
    font-size: 2.5vw;
    align-self: center;
    text-align: center;
}