@font-face {
  src: url("font/Wishper-Script.ttf");
  font-family: Wishper-Script;
}

* {
  margin: 0;
  padding: 0;
}

.header-container {
  top: 0;
  left: 0;
  width: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  flex-wrap: wrap;
}

.navigation {
  font-size: 20px;
}

.navigation a {
  color: black;
  display: inline-block;
  text-decoration: none;
  margin-right: 20px;
  flex-wrap: wrap;
  text-transform: uppercase;
}

.navigation a::after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background: black;
  transition: width 0.3s;
}

.navigation a:hover::after {
  width: 100%;
  transition: width 0.3s;
}

.body {
  background-image: url("image/homepage.jpg");
  background-position: center, center;
  background-repeat: no-repeat;
  background-size: cover;
}

.body-text {
  padding-top: 15%;
  align-items: center;
  text-align: center;
  min-height: 100vh;
}

.body-text h1 {
  color: rgb(4, 68, 28);
  font-size: 60px;
  font-family: Wishper-Script;
  padding-bottom: 30px;
}

.body-text p {
  font-size: 20px;
}

.author {
  font-family: Wishper-Script;
}

span {
  opacity: 0;
  transition: all 0.4s ease;
  transform: translateY(70px);
  display: inline-block;
}

span.fade {
  opacity: 1;
  transform: translateY(0px);
}
