
    @font-face {
    font-family: 'code-font';
    src: url('functions/code-font.otf');
    }

    body {
    padding: 0;
    margin: 100px 0 0 0;
    }
    
    .navigation {
    position: fixed;
    display: flex;
    top: 0;
    left: 0;
    right: 0;
    border-bottom: 1px solid #ddd;
    z-index: 90;
    align-items: center;
    background-color: #f5f5f5;
    }
    
    .logo {
    height: 100px;
    padding: 0px;
    padding-left: 10px;
    }
    
    .menuButton {
    display: none;
    }
    
    .navigation ul {
    padding: 20px;
    margin: 10px 20px 10px 20px;
    display: flex;
    list-style: none;
    justify-content: flex-end;
    width: -webkit-fill-available;
    }
    
    .navigation li {
    display: flex;   
    text-align: center;
    }
    
    .navigation a {
    padding: 10px;
    color: black;
    font-size: 18px;
    font-weight: bold;
    margin-right: 10px;
    text-decoration: none;
    }
    
    .navigation a:hover {
    color: #0cc0df;
    text-decoration: underline;
    }
    
    .lockRight a {
    background-color: #0cc0df;
    color: white;
    border-radius: 3px;
    }
    
    .lockRight a:hover {
    background-color: #f5f5f5;
    }
    
    @media screen and (max-width: 910px) {
        
    .navigation {
    justify-content: space-between;
    flex-wrap: wrap;
    }
    
    .menuButton {
    background-color: #0cc0df;
    color: white;
    border-radius: 3px;
    float: right;
    text-align: center;
    padding: 10px;
    margin: 20px;
    font-size: 18px;
    font-weight: bold;
    height: fit-content;
    }
    
    .menuButton:hover {
    opacity: 0.7;
    }
    
    .navigation ul {
    float: right;
    align-items: flex-end;
    border-top: 1px solid #ddd;
    margin: 0;
    }
    
    .navigation li {
    justify-content: flex-end;
    margin-bottom: 20px;
    }
        
    }
    
    
    
    
    
    