#toggleBtn {
                position: fixed;
                display: flex;
                margin: 20px 0 0 20px;
                flex-direction: column;
                justify-content: center;
                align-items: center;
                cursor: pointer;
                z-index: 1500;
            }

            .hamburger-line {
                width: 25px;
                height: 3px;
                border-radius: 10px;
                margin-bottom: 3px;
                background-color: #EB6402;
            }


             #nav-container {
                position: fixed;
                height: 100%;
                width: fit-content;

                display: flex;
                flex-direction: row;
                justify-content: center;
                align-items: center;
                z-index: 1000;
            }

            .logo {
                height: 300px;
                width: 65px;
                background-color: #EB6402;
                display: flex;
                justify-content: center;
                align-items: center;
                margin: 0 0 0 18px;
                z-index: 1500;
            }

            .logo h1 {
                writing-mode: vertical-lr;
                text-align: center;
                line-height: 0;
                transform: rotate(180deg);
                font-family: Arial, Helvetica, sans-serif;
                color: white;
                font-size: 24px;
                cursor: pointer;
                padding: 0 0 0 0;
            }

            a {
                text-decoration: none;
                color: white;
            }

            #navmenu ul {
                list-style: none;
                padding: 20px;
                margin: 0;
                font-family: 'MyCustomFont', sans-serif;
            }
    
             #navmenu li {
                color: white;
                padding: 5px 0;
                font-size: 20px;
            }
    
             #navmenu li:hover {
                color: #EB6402;
                font-weight: bolder;
                cursor: pointer;
            }
    
            #navmenu {
                width: 0px; /* initial collapsed width */
                height: 300px;
                background-color: rgba(0, 0, 0, 0.75);
                border-radius: 0px 10px 10px 0px;
                transition: width 0.3s ease;
                overflow: hidden;
    
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: left;
                z-index: 1500;
            }

            #navmenu.active {
                width: 200px;
            }

            @font-face {
  font-family: 'MyCustomFont';
  src: url('font/GlacialIndifference-Regular.otf') format('opentype'),
       url('font/GlacialIndifference-Regular.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}