*{
    margin: 0;
    padding: 0;
}

body{
    background-color: #242424;
    color: white;
}

#nav-insert{
    margin: 0px;
    width: 100%;
    padding: 0px;
}

.container{
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 91vh;
    margin-top: 0;
    margin-bottom: 0;
    padding-left: 100px;
    padding-right: 100px;
}

.navbar{
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #1e1e1e;
    padding: 25px 20px;
    margin: 0px;
}

.home{
    display: flex;
    align-items: center;
}

.logo{
    height: 30px;
    width: 90px;
    text-decoration: none;
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
    color: inherit;
    font-family: 'Cal Sans', 'Courier New', Courier, monospace;
    font-size: 30px;
}

.nav-button{
    margin: 10px;
    text-decoration: none;
    color: inherit;
    font-size: 20px;
    font-family: Courier, monospace;
    font-style: bold;
}

.inline-link{
    color: inherit;
}

.footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    color: white;
    text-align: center;
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
    background-color: #1e1e1e;
    padding: 10px;
  }