@font-face {
    font-family: 'roboto';
    src: url('../Fonts/Roboto/Roboto-VariableFont_wdth\,wght.ttf') format('truetype');
  }


* {
    margin: 0;
    padding: 0;
    font-family: roboto, arial, sans-serif;
}

body {
    background-color: rgb(27, 27, 27);
    color: beige;
}

a {
    color: beige;
}

#header{
    width: 100vw;
    height: 10vh;
    display: flex;
    justify-content: center;
    align-items: center;
    
}

#main-container {
    min-height: 80vh;
    width: 100vw;
    min-height: 80vh;
}

#menubar {
    min-width: 10vw;
    float: left;
    min-height: 80vh;
   
}

#menubar > ul {
    margin-left: 1.5em;
    list-style: none;
}

#main {
    min-width: 90vw;
    min-height: 80vh;
}


#footer {
    width: 100vw;
    height: 10vh;
    background-color: rgb(49, 48, 48);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}