* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: black;
  
  min-height: 100dvh;

  /* Matrix Theming */
  /* Swirl - Special Text Formatting */
  font-family: "Doto";
  color: #00ff41;
  text-shadow: 0 0 5px #00FF41, 0 0 10px #00FF41;

  display: flex;
  flex-direction: column;
}

.main--wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  flex: 1;
  margin: 16px;
}

a {
  color: #00ff41;
  font-weight: bold;
  text-decoration: underline;
}

footer {
  color: #00ff41;
  text-align: center;
  font-size: 14px;
  margin-top: 12px;
  margin-bottom: 16px;
}

.footer--icon {
  font-size: 20px;
}

footer p {
  margin-top: 8px;
}

h1 {
  margin-bottom: 16px;
  text-align: center;
}

h3 {
  margin-top: 32px;
  margin-bottom: 8px;
}

/* SCOOP - CSS Animation */
.matrix--flash {
  width: 12px;
  height: 24px;
  background-color: #00ff41;
  display: inline-block;
  margin-left: 4px;

  animation: matrix-flash 1s linear infinite;
}

@keyframes matrix-flash {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.start--wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
}

/* SCOOP - CSS :hover  */
.btn--main {
  background-color: #00ff41;
  color: black;
  padding: 8px 16px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  font-family: "Doto";

  transition: all 0.3s ease-in-out;
}

.btn--main:hover {
  box-shadow: 0 0 10px #00ff41, 0 0 20px #00ff41;
}

.riddle--wrapper {
  font-size: 1.2em;
  text-align: center;
}

.input--text {
  background-color: black;
  color: #00ff41;
  border: 2px solid #00ff41;
  padding: 8px;
  border-radius: 4px;
  font-size: 16px;
  font-family: "Doto";
  width: 100%;
  font-family: "Doto";
}

.answer--form {
  display: flex;
  flex-direction: row;
  gap: 8px;
}

.ty--wrapper {
  font-size: 1.2em;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.dino--img {
  width: 100%;
  max-width: 300px;
  height: auto;
  margin: 32px auto 0 auto;
}