body {
  background-color: #292523;
  color: #d4cfc3;
  margin-top: 0;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;

  font-family: sans-serif;
}

body,
html,
main {
  height: 100%;
}

main {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

:root {
  font-size: 12px;
}

h1,
h2,
ul,
p {
  margin: 0;
}

a {
  text-decoration: unset;
  color: #b5a8a8;
}
a:hover {
  color: #ecc999;
}

p {
  margin-block-start: 1rem;
  margin-block-end: 1rem;
}


.social {
  display: flex;
  position: absolute;
  bottom: 16px;
}


.social-link {
  display: flex;
  align-content: center;
  align-items: center;
  font-size: 2rem;
  margin-right: 1rem;
}


.social-link img {
  margin-right: 0.5rem;
}

.main-text {
  font-size: 4rem;
}


.buh-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  font-size: 10rem;
  transform: translateX(-6rem);
}

.buh-ghost {
  position: absolute;
  animation-duration: 1.5s;
  animation-name: ghost-move;
  animation-timing-function: linear;
}


@media screen and (max-width: 600px) {
  .social {
    flex-direction: column; 
  }

  .social-link {
    margin-right: 0rem;
    margin-bottom: 1rem;
  }

  .buh-container {
    font-size: 6rem;
    transform: translateX(-4rem);
  }
}

@keyframes ghost-move {
  0% {
    font-size: 0.2em;
    transform: translate(-50vw, 0vh) rotate(0deg);
  }

  10% {
    font-size: 0.4em;
    transform: translate(-45vw, -2vh) rotate(30deg);
  }
  20% {
    font-size: 1em;
    transform: translate(-40vw, -2vh) rotate(-30deg);
  }
  30% {
    font-size: 1.5em;
    transform: translate(-35vw, -2vh) rotate(30deg);
  }
  40% {
    font-size: 2m;
    transform: translate(-30vw, -2vh) rotate(-30deg);
  }

  70% {
    font-size: 3em;
    transform: translate(-20vw, -10vh) rotate(180deg);
  }

  100% {
    font-size: 1em;
    transform: translate(0vw, 0vh) rotate(360deg);
  }
}

