body {
  background-color: #ffffff;
  color: black;
  font-family: 'Trebuchet MS', sans-serif;
}
.webbutton {
  background-color: #ffffff;
  border-color: yellow;
  border-width: 2px;
  font-family: 'Trebuchet MS', sans-serif;
  border-radius: 10px;
}
.webbutton:hover {
  background-color: #dede00;
}

.warning {
  animation-name: flicker;
  animation-duration: 2s;
  animation-iteration-count: infinite;
}
@keyframes flicker {
  0% {color: black;}
  50% {color: white;}
  100% {color: black;}
}
.gamebutton {
  background-color: #fce303;
  position: relative;
  border-style: outset;
  border-color: yellow;
  font-family: 'Trebuchet MS', sans-serif;
  border-radius: 2px;
}
.gamebutton:hover {
  background-color: #ffed4f
}
.backbutton {
  background-color: #ff0000;
  border-style: outset;
  border-color: #990000;
  font-family: 'Trebuchet MS', sans-serif;
  border-radius: 2px;
}
  