/* ANIMATIONS */

@keyframes fadeInAnimation {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}




/* TITLE */

.home {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 200px;

}

.fade-in {
  opacity: 0;
  animation: fadeInAnimation 2s ease-in forwards;
}



#title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 60%;
  height: auto;

}

#title-link {
  display: inline-block;
  text-decoration: none;
}

#titlegif {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}







/* MENU */

#menu {
  font-family: newnord;
  font-size: 2ch;
  color: #ffffff;
  text-align: center;
  margin-top: 10px;
  gap: 1.5rem;
  display: flex;
  text-transform: uppercase;
}

.menu-item {
  display: inline;
  margin: 0 0ch;
  color: #ffffff;
  text-decoration: none;
  border: #ffffff 1px solid;
  padding: 10px;
  border-radius: 5px;
  letter-spacing: 0.5px;
}

.menu-item:hover {
  background-color: #ffffff;
  color: #000000;
}



.menu-separator {
  width: 1.5px;
  height: 1.5rem;
  background-color: #ffffff;
  display: inline-block;
  border-radius: 1px;
  align-self: center;
}
