/* ANIMATIONS */

@keyframes fadeInAnimation {
  from {
	opacity: 0;
  }
  to {
	opacity: 1;
  }
}



.home {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: auto;
}



.fade-in {
  opacity: 0;
  animation: fadeInAnimation 2s ease-in forwards;
}





/* MENU */

#menu {
  font-family: Arial;
  font-weight: 700;
  font-style: normal;
  font-size: 2ch;
  color: #000000;
  text-align: center;
  margin-top: 10px;
  gap: 1rem;
  display: flex;
  position: absolute;
  top: 0;
  right: 10px;
  margin: 10px;
  padding-left: 1%;
  padding-top: 1%;
  text-transform: uppercase;
  z-index: 1000;
}

.menu-item {
  display: inline;
  margin: 0 0ch;
  color: #000000;
  text-decoration: none;
  padding: 10px;
  letter-spacing: 1px;
}

.menu-item:hover {
  text-decoration: underline;
  text-decoration: underline;
  text-decoration-thickness: 3px;
  text-underline-offset: 4px;
}


.menu-separator {
  width: 1.5px;
  height: 1.5rem;
  background-color: #000000;
  display: inline-block;
  border-radius: 1px;
  align-self: center;
}

#pdf-container {
  margin: -100px 0;
}