body {
    margin: 0;
    padding: 0;
    width: 100vw;
    height: 100vh;
    background: white;
    overflow: hidden;
    font-family: "Roboto Mono", monospace;
}

.header {
    width: 100vw;
    height: 30px;
    overflow: hidden;
    display: flex;
    align-items: center;
    background-color: rgb(210, 210, 210);
    border-bottom: 1.3px solid black;
}

.track {
    display: flex;
    width: max-content;
    animation: scroll 50s linear infinite;
}

.track p {
    margin: 0;
    white-space: nowrap;
    flex-shrink: 0;
}

.track::after {
    content: "select music by artists with <1000 monthly listeners on Spotify 🎵 select music by artists with <1000 monthly listeners on Spotify 🎵 select music by artists with <1000 monthly listeners on Spotify 🎵\00A0";
    white-space: nowrap;
    flex-shrink: 0;
}

@keyframes scroll {
    from {
        transform: translateX(0%);
    }
    to {
        transform: translateX(-50%);
    }
}

.logo {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    width: 100vw;
    font-size: 45px;
    font-weight: 475;
}

.left {
    margin-left: 35px;
    margin-top: 10px;
}

.right {
    margin-right: 35px;
    margin-top: 10px;
}

.middle {
    min-width: 0;
    overflow: hidden;
    margin: 10px 8px 0 8px;
    display: flex;
    justify-content: center;
}

.middle span {
    display: inline-block;
    transform-origin: center;
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0% {
        transform: scaleX(0);
    }

    25% {
        transform: scaleX(55);
    }

    50% {
        transform: scaleX(0);
    }

    75% {
        transform: scaleX(-55);
    }

    100% {
        transform: scaleX(0);
    }
}

.menu {
    margin-top: 7.5%;
    margin-left: 35px;
    font-size: 35pt;
    font-weight: 450;
}

.menu img {
    width: 95%;
    height: 75px;
    display: block;
    border-left: 1.3px solid black;
    border-right: 1.3px solid black;
    border-bottom: 1.3px solid black;
    border-top: 0;
    
}

.menu .song:first-child img {
    border-top: 1.5px solid black;
}

.menu .song {
    position: relative;
    display: block;
    margin: 0;
    padding: 0;
    line-height: 0;
}

.menu .song a{
    text-decoration: none;
    color: black;
    position: absolute;
    top:20%;
    left: 1.5%;
    margin: 0;
    padding: 0;
    line-height: 1.2;
}

.menu .song span{
    color: rgb(210, 210, 210);
}

.menu .song a:hover {
    text-decoration: underline;  
}

.menu .song:first-child img {
    border-top: 1.5px solid black;
}

.footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end; /* optional */
    background-color: rgb(210, 210, 210);
    position: fixed;
    bottom: 0;
    width: 100vw;
    border-top: 1.3px black solid;
    font-size: 12.5px;
    font-weight: 400;
    padding: 0 35px;
    box-sizing: border-box;

}

.footer a{
    color: black;
    text-decoration: none;
}

.footer a:hover{
    text-decoration: underline;
    color: cyan;
}

#credits span{
  font-size: 20px;

}
  


/* ________________________________________________________________________________
media query for <1200px */

@media (max-width: 1200px) {
  
  
  .middle span {
    display: inline-block;
    transform-origin: center;
    animation: pulse_mobile 3s linear infinite;
}

  @keyframes pulse_mobile {
      0% {
          transform: scaleX(0);
      }
  
      25% {
          transform: scaleX(40);
      }
  
      50% {
          transform: scaleX(0);
      }
  
      75% {
          transform: scaleX(-40);
      }
  
      100% {
          transform: scaleX(0);
      }
}

/* ________________________________________________________________________________
media query for <900px */

@media (max-width: 900px) {
  
  .menu {
    font-size: 27.5pt;
  }
  
  .menu img {
  height: 60px; 
  }
  
    .footer {
      display: block;
      font-size: 8pt;
    }
  
  .middle span {
    display: inline-block;
    transform-origin: center;
    animation: pulse_mobile 3s linear infinite;
}

  @keyframes pulse_mobile {
      0% {
          transform: scaleX(0);
      }
  
      25% {
          transform: scaleX(25);
      }
  
      50% {
          transform: scaleX(0);
      }
  
      75% {
          transform: scaleX(-25);
      }
  
      100% {
          transform: scaleX(0);
      }
}

/* ________________________________________________________________________________
media query for <600px */

@media (max-width: 600px) {
  

  
  .logo .left {
    margin-left: 20px;
    }
    
  
  .menu {
    font-size: 17.5pt;
    margin-left: 20px;
    }
    
    .menu img{
    height: 40px;
    }
    
    .footer {
      display: block;
      font-size: 8pt;
    }
  
   .footer p{
      margin-left: -15px;
    }
    
    .footer span{
      margin-left: -15px;
    }
    
  .middle span {
    display: inline-block;
    transform-origin: center;
    animation: pulse_mobile 2s linear infinite;
}

  @keyframes pulse_mobile {
      0% {
          transform: scaleX(0);
      }
  
      25% {
          transform: scaleX(14);
      }
  
      50% {
          transform: scaleX(0);
      }
  
      75% {
          transform: scaleX(-14);
      }
  
      100% {
          transform: scaleX(0);
      }
      
  }
  
@media (max-width: 500px) {
  
  .middle span {
    display: inline-block;
    transform-origin: center;
    animation: pulse_mobile_1 1.5s linear infinite;
}

  @keyframes pulse_mobile_1 {
      0% {
          transform: scaleX(0);
      }
  
      25% {
          transform: scaleX(6);
      }
  
      50% {
          transform: scaleX(0);
      }
  
      75% {
          transform: scaleX(-6);
      }
  
      100% {
          transform: scaleX(0);
      }
      
  }
 
}

@media (max-height: 100px) {
  .footer {
    display: none;
  }
  
}

  
  

    


    

