body {
    background-color: black; 
    margin: auto;
    overflow-x: hidden;
    font-family: "Monaco", monospace;
    color: yellow;
    white-space: normal;
  }
  
@media only screen and (max-width: 500px) {
body {
    width: 500px;  
    margin: auto;
    }
}

h2 {
  text-align:center;
}

h3 {
  text-align: center;
}

p {
  text-align: center;
}

.description {
    background-color: black;
    width: 434px;
    text-align: center;
    margin: auto;
    border-style: solid;
    border-color: yellow;
    border-width: thin;
    padding: 4px;
    }
    
.pic {
    background-color: black;
    width: 500px;
    height: auto;
    margin: auto;
    }
    
.change {
     width: 100%;
     height: 100%;
     filter: saturate(0%) sepia(100%) brightness(110%) blur(0.5px);
     transition: filter 0.1s ease;
}
.change:hover {
    filter: saturate(100%);
}

.text {
   display: flex;
   flex-direction: column;
   justify-content: flex-start;
   align-items: center;
   margin: 10px;
    border-style: inset;
    border-color: yellow;
    border-width: thin;
    margin-bottom: 1%;
    width:150px;
}

.song {
   background-color: black;
   width: 434px;
   display: flex;
   flex-direction: row;
   justify-content: flex-start;
   align-items: center;
   margin: auto;
   border-style: inset;
    border-color: yellow;
    border-width: thin;
    margin-bottom: 1%;
}

.tip {
 font-size: 13px;
 text-align: center;
 margin: 1%;
 color: white;
  }