*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}
nav{
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: black;
    min-height: 8vh;
    position: fixed;
    top: 0px;;
    width: 100%;
    z-index: 9999;
}
.nav-links{
    display: flex;
    justify-content: space-around;
    width: 85%;
    margin-right: 35px;
    list-style-type: none;
}
.nav-links a{
    color: yellow;
    text-decoration: none;
    letter-spacing: 3px;
    font-weight: bolder;
    font-size: larger;
    padding: 20px 20px;
}
.nav-links li a:hover:not(.active){
    background-color: orange;
}
.nav-links li a.active{
    background-color: lightblue ;
}

footer{
    background-color: black;
    height: 50px;
    margin-top: 50px;
    padding-top: 15px;
    color: lightblue;
}
.footer{
    color: lightblue;
}
.footer:hover{
    color:yellow;
}

.fa-solid.fa-headphones {
    padding-left: 10px;
}
.fa-solid.fa-compact-disc{
    padding-right: 10px;
}

.checkbox{
    opacity: 0;
    position: absolute;
  }
  .checkbox:checked + .label .ball{
    background-color: orange;
    transform: translateX(24px);
  }
  .label{
    background-color: yellow;
    border-radius: 50px;
    align-items: center;
    justify-content: space-between;
    position: relative;
    display: flex;
    height: 26px;
    width: 50px;
  }
  .ball{
    background-color: lightblue;
    border-radius: 50%;
    top: 2px;
    left: 2px;
    position: absolute;
    padding: 5px;
    height: 22px;
    width: 22px;
    transform: translateX(0px);
      transition: transform 0.2s linear;
  }