* {
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  font-size: 14px;
  line-height: 20px;
  padding: 30px;
}

body#secret {
  background: #000;
  color: #49da38;
}

p,
h1,
h2,
h3 {
  margin-bottom: 20px;
}

nav {
  text-align: center;
}

main {
  max-width: 500px;
  margin: 0 auto;
}

#potato {
  height: 20vh;
  width: 20vh;
  margin: 25vh auto 0 auto;
  display: block;
  cursor: pointer;
  touch-action: none !important;
  user-select: none !important;
  animation: spin 5s linear infinite;
}

#faq {
  position: absolute;
  top: 0px;
  left: 0px;
  background: #eee;
  max-width: 500px;
  width: 100vw;
  padding: 30px;
  box-sizing: border-box;
  z-index: 1000;
}

.hidden {
  display: none;
}

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

#popup-container {
  text-align: center;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  padding: 30px 0;
  z-index: 500;
}

#popup-message {
  display: inline;
  background: #000;
  padding: 10px;
  color: #fff;
  border-radius: 10px;
  line-height: 30px;
}

#secret-link {
  color: #000;
  text-decoration: none;
}

#secret main span {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}
