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

body {
  font-family: "Josefin Sans", sans-serif;
  background-color: black;
  color: white;
  font-size: 25px;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* HOMEPAGE */
.title {
  font-family: "Bitcount Ink", system-ui;
  font-size: 95px;
}

.btn-custom {
  background-color: #936293;
  color: white;
  font-size: 25px;
}

.btn-custom:hover {
  background-color: #a324a3;
}

.gif {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 20px;
}

.gif img {
  width: 100%;
  height: auto;
}

/* TEST */
.test-title {
  color: #936293;
}

#timer {
  font-size: 28px;
  font-weight: bold;
  color: #936293;
}

.question-container {
  border: 1px solid white;
  padding: 20px;
  flex: none;
}

/* MONKEY */
.monkey {
  position: fixed;
  bottom: 65px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}

.monkey img {
  width: 150px;
  height: auto;
}

/* FOOTER */
html,
body {
  height: 100%;
  margin: 0;
}

body {
  display: flex;
  flex-direction: column;
}

footer {
  margin-top: auto;
  color: white;
}

footer i {
  color: #936293;
}

footer a {
  color: #936293;
}

/* RESPONSIVE */
@media screen and (max-width: 500px) {
  .title {
    font-size: 55px;
  }
  .desc {
    font-size: 18px;
    padding: 0;
  }
  .btn-custom {
    font-size: 18px;
  }
}
