<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">
/* THIS IS THE CSS FOR THE NAVIGATION MENU */

.overlay {
    height: 0%;
    width: 100%;
   position:fixed;
    top: 0;
    left: 0;
    text-align: right;
    background-color: #b40200;
    background-blend-mode:multiply;
    overflow-y:hidden;
    transition: 1.0s;
    z-index: 999;
     
    
}

.overlay-content {
    position: relative;
    top: 25%;
    width: 100%;
    text-align: center;
    
}

.overlay a {
    padding: 10px;
    text-decoration: none;
    font-size: 40px;
    color: white;
    display: block;
    transition: 0.3s;
    
    
}

.overlay a:hover,
.overlay a:focus {
    color: black;
    
}

.overlay .closebtn {
    position: absolute;
    top: 10px;
    right: 35px;
    font-size: 70px;
    
}</pre></body></html>