#nav{
    font-size:20px;
    background-color:#01ad5d ;
}
.hamburger {
  display: inline-block;
  cursor: pointer;
  width: 30px;
  height: 22px;
  position: absolute;
  display:none;
  top:10px;
  left:10px;
}
#smallScreenDiv{
    position: absolute;
    top:0px;
    width:100%;
    height: 42px;
    background-color: #01ad5d;
    display: none;
}


.hamburger span,
.hamburger span::before,
.hamburger span::after {
  display: block;
  background-color: black;
  height: 4px;
  width: 100%;
  border-radius: 2px;
  position: absolute;
}

.hamburger span {
  top: 50%;
  transform: translateY(-50%);
}

.hamburger span::before {
  content: "";
  top: -10px;
}

.hamburger span::after {
  content: "";
  top: 10px;
}
#hamburgerMenu{
    position: absolute;
    top:42px;
    width:100%;
    height:100%;
    background-color: rgb(255, 255, 255);
    display: none;
    text-align: center;
}
#smallScreenSeperator{
    position:absolute;
    top:25px;
    border: none;
    opacity: 100%;
    border-top: 2px solid black;
    width:100%;
    display: none;
}
@media (max-width:600px){
    #nav{
        visibility:hidden;
        overflow: hidden;
        font-size: 10px;
    }
    #smallScreenDiv,
    #smallScreenSeperator,
    .hamburger{
        display: block;
    }
}
#searchSong {
  position: absolute; 
  width: 25.1%; 
  top: 50%; 
  left: 95%; 
  text-align: center;

  transform: translate(-100%,-50%)
  
    
}
#title{
    position: absolute; 

  left: 50%; 
  transform: translate(-50%,-0%);
  font-size: 25px;

}
#titleSmall{
    position: absolute; 

  left: 40%; 
  transform: translate(-50%,-0%);
  font-size: 15px;

}

