@import url("https://fonts.googleapis.com/css2?family=Permanent+Marker&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto+Mono&display=swap");
html,
body {
  height: 100vh;
  width: 100vw;
  background: #000;
  font-family: "Roboto Mono";
  overflow: hidden;
}
#wrapper {
  width: 100%;
  max-width: 400px;
  max-height: 400px;
  margin: 20px auto;
}
#guesser-div {
  border: 1px solid #aaa;
  margin-top: 15px;
}
#guesser-img {
  width: 100%;
  max-height: 400px;
  clip-path: inset(100% 0 0 0);
}
#options {
  width: 100%;
  max-width: 500px;
  text-align: center;
  margin: 10px 0;
}
button {
  margin: 0 10px;
  padding: 5px 10px;
  border: 0;
  background: #000;
  font-size: 35px;
  cursor: pointer;
}
h1 {
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  font-size: 30px;
}
#stats {
  color: #fff;
  padding: 10px 0px;
  font-size: 13px;
  font-weight: bold;
}
#score {
  display: inline-block;
  background: #000;
}
#stats span {
  margin: 0 10px;
}
#result {
  position: fixed;
  top: 50vh;
  left: calc(50vw - 200px);
  font-family: "Permanent Marker";
  text-align: center;
  box-sizing: border-box;
  width: 400px;
  transform: rotate(-20deg);
  text-shadow: 5px 5px 0px #000;
  font-size: 1em;
  visibility: hidden;
  transition: font-size 2s;
}
#result[which="0"] {
  color: red;
}
#result[which="1"] {
  color: green;
}
#result.active {
  font-size: 4em;
  visibility: visible;
}
#description {
  display: block;
  margin: 10px 0 0 0 !important;
}
#contact {
  color: #fff;
  font-size: 13px;
  text-align: center;
  display: block;
}
