		*{
 margin : 0;
 padding: 0;
 box-sizing: border-box;
}

body {
  font-family: PS Interplanetary;
  transition: background-color 0.2s ease;
}

.main-image {
    width: 500px;
    display: block;
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
/*    filter:  grayscale(%);
    filter:  blur(px);*/
}


p {
    display: none;
}

@media only screen and (max-width: 600px) {
/*  body {
    background-color: #FEF9E3;
  }*/

.main-image {
    /*display: none;*/
    width: 200px;
  }

  p {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}