@font-face {
  font-family: Minecraft;
  font-weight: bold;
  src: url("../font/minecraft.otf") format("opentype");
}

* {
  font-family: Minecraft, sans-serif;
}

@keyframes fadeInAnimation {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

body {
  background-color: #141414;
  text-align: center;
  animation: fadeInAnimation ease 0.5s;
}

.name-text {
  margin-top: 15rem;
  line-height: 0;
  font-size: 2.5rem;
  color: #f2f2ff;
}

.nav-list {
  border-radius: 1rem;
  display: flex;
  width: fit-content;
  margin: 2.25rem auto;
  padding: 1.5rem;
  list-style-type: none;
  background: #0f0f0f;
}

.nav-button {
  cursor: pointer;
  text-decoration: none;
  padding: 0 1rem;
  color: #fff;
  transition: all 0.3s 0s ease;
}

.nav-button:hover {
  color: #999;
  transform: translateY(-0.4rem);
}

@media screen and (max-width: 330px) {
  .nav-list {
    display: block;
  }
}