  /* Menu Hamburguer */
  .menu-hamburguer {
    font-size: 30px;
    cursor: pointer;
    color: black;
    border: none;
    background: none;
    outline: none;
}

  .menu-hamburguer:focus {
    outline: none;
}

/* Sidepanel */
.sidepanel {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    background-color: white;
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 60px;
}

.sidepanel a {
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    font-size: 20px;
    color: black;
    display: block;
    transition: 0.3s;
}

.sidepanel .closebtn {
    position: absolute;
    top: 45px;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
}

/* Custom Styles */
header {
    display: flex;
    justify-content: space-between;
    padding: 10px 20px;
    background-color: #333;
    color: white;
}

header nav a {
    color: white;
    text-decoration: none;
    margin-left: 20px;
}

header nav a:hover {
    text-decoration: underline;
}

/* Hide menu button on desktop */
@media (min-width: 768px) {
    .menu-hamburguer {
        display: none;
    }
}