.menu {
    height: 10%;
    background-color: #7c5c42;
    overflow: hidden;
}

.menu a {
    float: left;
    display: block;
    color: white;
    text-align: center;
    padding: 14px 20px;
    text-decoration: none;
}

.menu a:hover {
    background-color: #3b2a1a;
}

.menu a:hover.none {
    background-color: #7c5c42;
}

.gyengen{
    margin-top: 10px;
    align-items: center;
    font-size: 100%;
    color: white;
}

.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 28px;
    margin-left: 10px;
}
  
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.4s;
    border-radius: 34px;
}
  
.slider::before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
}
  
input:checked + .slider {
    background-color: #4CAF50;
}
  
input:checked + .slider::before {
    transform: translateX(22px);
}


.switch-label {
    display: flex;
    align-items: center;
    font-size: 100%;
    color: white;
    margin-bottom: 0px;   
    text-decoration: none;
}

