*{
    margin: 0em;
    font-family: "montserrat", sans-serif;
    font-weight: 500;
    color: #22252D;
}
*::-webkit-scrollbar {width: .5em;}
*::-webkit-scrollbar-track {-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3); border-radius: 0.5em;}
*::-webkit-scrollbar-thumb { background-color: #ccc; border-radius: 0.5em;}
:-webkit-full-screen {
    background-color: inherit;
}
p{
  font-size: 14px;
}
.center{
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.center_horizontal{
    position: relative;
    left: 50%;
    transform: translate(-50%, 0%);
}
.center_vertical{
    position: relative;
    top: 50%;
    transform: translate(0, -50%);
}



/* NAV */
#nav{
    height: 48px;
    width: calc(100% - 64px);
    padding: 0 32px;
    display: grid;
    grid-template-columns: 1fr 0fr;
    grid-column-gap: 8px;
    background-color: #242424;
}
#nav>div{
    position: relative;
    height: 48px;
}
#nav>div:nth-child(1)>p{
    font-weight: bold;
    color: #FAFAFA;
    font-size: 14pt;
}
#nav>div:nth-child(2)>img{
    height: 48px;
    width: 48px;
    background-color: red;
}