body {
  background-color: #663d53;
  margin: 0;
  font-family: 'JetBrains Mono';
  font-size: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  user-select: none;
}

.wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.container {
  text-align: center;
  padding: 30px;
  border-radius: 10px;
  margin-top: -150px;
}

img {
  display: block;
  margin: 0 auto;
  user-select: none;
}

p {
  margin: 5px 0;
  font-family: 'JetBrains Mono';
  margin-top: -25px;
}

nav.buttons {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 450px;
  margin-top: -20px;
  padding: 10px;
}

button {
  display: flex;
  align-items: center;
  padding: 10px 20px;
  background-color: #4d2e3e;
  color: white;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  user-select: none;
  margin-right: 10px;
}

@font-face {
  font-family: 'Klartext Mono Bold';
  src: url('KlartextMonoBold.woff') format('woff');
}

button a {
  text-decoration: none;
  color: #ffb84c;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Klartext Mono Bold', monospace;
  font-size: 18px;
}

a {
  text-decoration: none;
  color: white;
}

.logo {
  width: 24px;
  height: 24px;
  margin-right: 6px;
}

footer {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  text-align: center;
  color: #ffb84c;
  padding: 10px;
  font-size: 14px;
  bottom: 0;
}

button:hover {
  background-color: #492b3c;
}

.fadein {
  opacity: 0;
  animation: fadeIn 2s ease-in-out forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .wrapper {
    transform: scale(0.8);
  }
}

@media (max-width: 425px) {
  .wrapper {
    transform: scale(0.6);
  }
}
