@font-face {
  font-family: MonotonRegular;
  src: url(fonts/Monoton-Regular.ttf);
}

@font-face {
  font-family: MysteryQuestRegular;
  src: url(fonts/MysteryQuest-Regular.ttf);
}

* {
  box-sizing: border-box;
}

body {
  background-color: #AAFF00;
  cursor: url('images/trtle.png'), auto;
  text-align: center;
  border: 5px solid #7F00FF;
  padding: 10px;
}

h1 {
  background-color: #AAFF00;
  color: #7F00FF;
  font-family: MonotonRegular;
  font-size: 64px;
  font-weight: normal;
}

img {
  max-width: 100%;
}

#turtle {
  border: 5px solid #FFAC1C;
  width: 400px;
}

#baseball {
  border: 5px dashed green;
  width: 400px;
}

#msm {
  width: 600px;
  border: 600px;
  border-left-style: dotted red;
  border-top-style: dotted red;
  border-bottom-style: solid blue;
  border-right-style: solid blue;
}

#drums {
  width: 600px;
  border-width: 5px;
  border-left-style: dotted;
  border-top-style: dashed;
  border-right-style: solid;
  border-bottom-style: double;
  border-color: #000;
}

#end {
  background-color: #AAFF00;
  font-size: 64px;
  font-family: MysteryQuestRegular;
  color: #7F00FF;
}

#carnage {
  position: fixed;
  bottom: 0;
  left: 20px;
  width: 100px;
}

#riot {
  position: fixed;
  bottom: 0;
  right: 20px;
  width: 120px;
}

#tabs {
  position: fixed;
  bottom: 200px;
  left: 0px;
  width: 150px;
}

#monke1 {
  position: fixed;
  bottom: 200px;
  left: 0px;
  width: 150px;
}

#monke2 {
  position: fixed;
  bottom: 200px;
  right: 20px;
  width: 150px;
}

#smurfcat {
  position: absolute;
  top: 2000px;
  right: 20px;
  width: 40px;
}

#kitty {
  position: absolute;
  top: 2600px;
  left: 50%;
  width: 40px;
}

#cheese {
  position: absolute;
  top: 1420px;
  left: 69%;
  width: 40px;
}

#gorilla-tag {
  border: 5px inset #36454F;
}

#sushi {
  border: 5px dotted #fff;
}

#weezer {
  width: 400px;
  border: 5px outset #FFBF00;
}

@media (max-width: 576px) {
  #monke1,
  #monke2 {
    display: none;
  }

  h1,
  #end {
    font-size: 42px;
  }
}

body.spin * {
  animation: spin .0001s infinite linear;
}

@keyframes spin {
  from { transform:rotate(0deg); }
  to { transform:rotate(360deg); }
}
