/* ANIMATIONS */

@keyframes fadeInAnimation {
  from {
	opacity: 0;
  }
  to {
	opacity: 1;
  }
}

html {
	scroll-behavior: smooth;
  }
  




/* TITLE */

.home {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.fade-in {
  opacity: 0;
  animation: fadeInAnimation 2s ease-in forwards;
}

#title {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: fit-content;
  position: sticky;
  top: 0;
  left: 0;
  padding: 20px;
  z-index: 99;
}

#title a {
  display: flex;
}

#titlegif {
  width: 25%;
  height: auto;
}


/* MENU */

#menu {
  font-family: newnord;
  font-size: 2ch;
  color: #ffffff;
  text-align: right;
  position: fixed;
  top: 0;
  right: 0;
  padding: 20px;
  z-index: 100;
  text-transform: uppercase;
}

.menu-item {
  display: inline;
  margin: 0 1ch;
  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;
}



/* SUBTITLE */

#subtitle {
  font-family: newnord;
  font-size: 10ch;
  color: #ffffff;
  text-align: center;
  margin-top: 120px;
  letter-spacing: 5px;
  text-transform: uppercase;
}

/* CONTENT */

#content {
  color: #ffffff;
  text-align: center;
  margin-top: 50px;
}

.gallery-item {
  display: flex;
  flex-direction: column;
  margin: 20px auto;
  padding: 20px;
  border: 1px solid #ffffff;
  border-radius: 10px;
  width: 90%;
  max-width: 700px;
  color: #ffffff;
  text-decoration: none;
  overflow: hidden;
}

.gallery-item p {
  font-family: playfair-display;
  font-size: 4ch;
  color: #ffffff;
  text-align: left;
  margin-top: 10px;
  margin-left: 20px;
  margin-right: 20px;
  text-align: justify;
}

.link {
  color: #ffffff;
}

.button {
  font-family: newnord;
  font-size: 3ch;
  color: #ffffff;
  text-align: center;
  text-decoration: none;
  letter-spacing: 1px;
  border: #ffffff 1px solid;
  border-radius: 5px;
  padding: 10px;
  display: block;
  position: bottom;
  margin: 40px 20px 20px;
  text-transform: uppercase;
}

.button:hover {
  background-color: #ffffff;
  color: #000000;
}
