body{
    background-color: var(--black);
}

#pageWrapper{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#indexContentRoot{
    margin-top: 80px;
    background-color: var(--grey);
    width: 85vw;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    border-radius: 5px 5px 5px 5px;
    padding: 10px 20px;
}

#navRoot{
    display: flex;
    overflow: hidden;
    position: fixed;
    top: 0;    
    width: 100%;
}


@media only screen and (min-width: 800px) {
    #navRoot {
        overflow: visible;
        position: static;
        width: auto;
    }

    #pageWrapper{
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        justify-content: flex-start;
        margin-top: 30px;
        
    }

    #indexContentRoot{
        margin-top: 0px;
        width: 550px;
        height: 100%;
    }

}

@media only screen and (min-width: 1200px) {
    #indexContentRoot{
        width: 820px;
        height: 100%;
    }
}