#navbar {
        display: flex;
        justify-content: space-around;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        background: rgba(37, 35, 35, 0.9);
        z-index: 1000;
        padding: 10px 0;
        
}

#navbar a{
        color: white;
        text-decoration: none;
        padding: 12px 16px;
        font-size: 25pt;
        font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

#navbar a:hover {
        background: rgba(255, 255, 255, 0.2);
        border-radius: 8pt;
}