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

* {
  margin: 0;
  font-size: 62.5%;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;

  font-size: 1.6rem;
  font-family: "Unbounded", cursive;
  background: #1a1918;
  color: #fff;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

h1 {
  font-size: 2.4rem;
  font-family: "Modak", cursive;
  text-align: center;
}

.logo {
  text-transform: uppercase;
  font-size: 10rem;
  font-family: Modak;
  font-style: normal;
  font-weight: 400;
}

.fade-in {
  opacity: 0; /* Start with opacity 0 */
  animation: fade-in 1s ease-in-out forwards; /* Apply the fade-in animation */
}

@keyframes fade-in {
  from {
    opacity: 0; /* Start opacity */
  }
  to {
    opacity: 1; /* End opacity */
  }
}

.pb-3 {
  padding-bottom: 12px;
}
