body{
    font-family: "Azeret Mono", monospace;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    font-size: 30px;
    text-shadow: rgb(151, 151, 151) 1px 0 3px;
}
.menu-container {
    position: fixed;
    top: -20px;
    left: 0;
    z-index: 1000;
}

.menu-icon {
    cursor: pointer;
    font-size: 40px;
    margin-left: 10px;
    color: white;
}
#close-btn {
    cursor: pointer;
    font-size: 50px;
    margin-left: 80%;
    color: white;
    background-color: #333;
    border: none;
}
#close-btn:hover {
    color: #444;
    text-shadow: #444 1px 0 3px;
}
.menu {
    position: fixed;
    top: 0;
    left: -20%; /* Initial position for PCs */
    width: 20%; /* Width for PCs */
    height: 100vh;
    background-color: #333;
    color: #fff;
    padding-top: 50px;
    transition: left 0.3s ease;
}

.menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu ul li {
    padding: 10px 20px;
}

.menu ul li a {
    color: #fff;
    text-decoration: none;
}

.content {
    margin-left: 20%; /* Adjust this to accommodate the menu width */
}
.nav-open {
    left: 0px;
    width: 20%;
  }
/* Media queries for smaller screens */
@media only screen and (max-width: 1024px) {
    .menu {
        left: -100%; /* Initial position for mobile and iPad */
        width: 100%; /* Width for mobile and iPad */
    }

    .content {
        margin-left: 0;
    }
    .nav-open {
        left: 0px;
        width: 100%;
      }
      .menu-icon {
        cursor: pointer;
        font-size: 40px;
        margin-top: 50px;
        margin-left: 10px;
        color: white;
    }
}

