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;
}

.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: 440px;
    height: 440px;
    margin: auto;
    border-style: solid;
    border-color: yellow;
    border-width: thin;
    margin-bottom: 1%;
    }
    
.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%);
}