body {
  margin: 0; 
  padding: 0; 
  font-family: "Comic Sans", "Comic Sans MS", "Papyrus", serif;
  font-weight: bold;
  font-size: 16px;
  color: black;
  background: white;
  -webkit-transition: background-color 0.05s ease-in 0s,
                      color 0.05s ease-in 0s;
          transition: background-color 0.05s ease-in 0s,
                      color 0.05s ease-in 0s;
}

#idiot-text,
#idiot-face {
  display: block;
  padding: 1em;
  text-align: center;
  font-size: 4em;
}

#idiot-text span {
  white-space: nowrap;
}

#idiot-face {
  padding: 0;
  font-size: 10em;
}

.inverted {
  background: black;
  color: white;
}

@media only screen and (min-width: 1000px) {
  body {
      width: 1000px;
      margin: 0 auto;
  }
}

@media only screen and (max-width: 400px) {
  body {
      font-size: 10px;
  }
}