@font-face {
  font-family: Pattaya;
  src: url(/public/fonts/Pattaya-Regular.ttf);
}
@font-face {
  font-family: Raleway;
  src: url(/public/fonts/Raleway-VariableFont_wght.ttf);
}
* {
  font-family: Raleway;
}

body .content #sheep svg {
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Safari */
  /* Konqueror HTML */
  -moz-user-select: none;
  /* Old versions of Firefox */
  /* Internet Explorer/Edge */
  user-select: none;
  /* Non-prefixed version, currently supported by Chrome, Edge, Opera and Firefox */
  -webkit-tap-highlight-color: transparent;
}

.freepik {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background-color: #002a29;
  color: white;
  text-align: center;
  line-height: 20px;
}
.freepik a {
  color: white !important;
}

.content {
  max-width: 1200px;
  margin: 100px auto;
  padding: 20px;
  position: relative;
}

meta[name=theme-color] {
  transition: all 0.5s ease-in-out;
}

body {
  background-color: #478b48;
  overflow: hidden;
  margin: 0;
  padding: 0;
}
body .overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  z-index: 999;
}
body .overlay #moin {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #007a79;
  font-weight: bold;
  font-size: 5rem;
  font-family: Pattaya;
  cursor: pointer;
  opacity: 1;
  transition: font-size ease-in-out 0.5s, color ease-in-out 0.5s, opacity ease-in-out 0.5s;
}
body .overlay #moin:hover {
  color: #c7cedf;
  font-size: 10rem;
}
body .overlay #moin:hover + #bg {
  background-color: #007a79;
}
body .overlay #bg {
  position: absolute;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  background-color: #002a29;
  z-index: -1;
  opacity: 1;
  transition: background-color ease-in-out 0.5s, opacity ease-in-out 0.5s;
}
body .content {
  color: white;
  position: absolute;
  left: 0;
  top: 0;
  width: calc(100vw - 100px);
  height: calc(100vh - 100px);
  z-index: 1;
  padding: 50px;
}
body .content .reload {
  position: absolute;
  right: 50px;
  bottom: 50px;
  cursor: pointer;
  font-size: 2rem;
  font-weight: bold;
  transition: transform 0.4s ease-in-out;
  transform: scaleX(-1);
}
body .content .reload:hover {
  transform: rotate(-45deg) scaleX(-1);
}
body .content .color {
  position: absolute;
  right: 50px;
  bottom: 90px;
  cursor: pointer;
  font-size: 2rem;
  font-weight: bold;
  transition: transform 0.4s ease-in-out;
}
body .content #sheep {
  width: 500px;
  max-width: 80vw;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
body .content #sheep svg {
  position: relative;
}
body .content #sheep svg #schaf {
  cursor: pointer;
  transform: translate(0, 0);
  transition: transform 0.5s ease-in-out;
}
body .content #sheep svg #schaf #kopf_sauer {
  transform-origin: 33.6% 44.3%;
}
body .content #sheep svg #schaf #kopf {
  animation: moveHead 2s linear infinite;
}
body .content #sheep svg #schaf #kopf #ohr {
  position: relative;
  transform-origin: 36.5% 39.4%;
  animation: moveEar 2s linear infinite;
}
body .content #sheep svg #schaf #kopf #auge {
  transition: fill 1.5s ease-in-out;
}
body .content #sheep svg #schaf #kopf #kopf_haar {
  transition: fill 1s ease-in-out;
}
body .content #sheep svg #schaf #koerper {
  animation: moveBody 2s linear infinite;
}
body .content #sheep svg #schaf #koerper #koerper_haar {
  transition: fill 1s ease-in-out;
}
body .content #sheep svg #sprechblase {
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
}

@keyframes moveBody {
  0%, 100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(0, -2px);
  }
}
@keyframes moveHead {
  0%, 100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(0, -3px);
  }
}
@keyframes moveEar {
  0%, 100% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(10deg);
  }
}
@keyframes shakeHead {
  0%, 100% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(10deg);
  }
}/*# sourceMappingURL=sheep.css.map */