
.menu-toggle {
    display: none;
    position: fixed;
    top: 20px;
    right: 10px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1000;
}

.menu-toggle div {
    width: 30px;
    height: 3px;
    background-color: rgb(255, 255, 255);
    margin: 6px 0;
}

.side-menu {
    position: fixed;
    top: 0;
    left: -250px;
    width: 250px;
    height: 100%;
    background-color: #333;
    color: white;
    transition: left 0.3s ease-in-out;
    padding-top: 60px;
}

.side-menu a {
    display: block;
    color: white;
    text-decoration: none;
    padding: 15px;
}

.side-menu a:hover {
    background-color: #575757;
}

.open {
    left: 0;
}

@media (max-width: 1000px) {
    .menu-toggle {
        display: block;
    }
}