@import url(normalize.css);

@import url('https://fonts.googleapis.com/css2?family=Comfortaa:wght@300..700&family=Source+Sans+3:ital,wght@0,200..900;1,200..900&display=swap');

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

html {
  font-size: 62.5%;
  font-family: 'Rubik Broken Fax', sans-serif;
}

input[type='number'] {
  font-size: 13rem;
  border: 3px solid black;
  border-radius: 24px;
  padding: 0 4px;
  text-align: center;
  background-color: transparent;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  /* display: none; <- Crashes Chrome on hover */
  -webkit-appearance: none;
  margin: 0; /* <-- Apparently some margin are still there even though it's hidden */
}

button {
  background-color: transparent;
  border: none;
}

p {
  font-size: 7rem;
  color: blue;
  padding: 2rem;
}

audio {
  width: 100% !important;
  min-height: 100px;
  display: block;
}

.flex-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.m-t {
  margin-top: 10rem;
}

.noise {
  position: fixed;
  width: 100dvw;
  height: 100dvh;
  z-index: -10;
  background-image: url(noise.gif);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  filter: opacity(0.5);
}

.frame {
  position: fixed;
  width: 100dvw;
  height: 100dvh;
  z-index: -9;
  background-image: url(frame.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

#root {
  display: grid;
  place-items: center;
  min-height: 100dvh;
  max-width: 100dvw;
  margin: 0 auto;
  z-index: 1;
}

.content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10rem;
}

.lock {
  display: flex;
  gap: 4px;
}

.lock-item {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 4px;
}

.arrow-btn {
  display: flex;
  width: 100%;
}

.arrow-btn:disabled {
  opacity: 0.5;
}

.arrow-btn-img {
  width: 100%;
}

.unlock-btn {
  font-size: 12rem;
  color: black;
}

.answer {
  font-size: 12rem;
  font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif,
    sans-serif;
  transform: scaleY(20) translateY(-0.5rem);
  /* display: none; */
  word-spacing: 2rem;
}

.meme {
  display: flex;
}

.meme img {
  width: 100%;
  max-height: 100dvh;
}

.message {
  position: fixed;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  font-size: 12rem;
  color: red;
  text-align: center;
  transition: opacity 0.5s;
}

.home {
  position: fixed;
  top: 2rem;
  right: 2rem;
  width: 7rem;
  height: 7rem;
}

.home img {
  width: 100%;
}

.question-page {
  display: flex;
  align-items: center;
  justify-content: center;
}

.code-link {
  font-size: 4rem;
  text-decoration: none;
}
