* {
  margin: 0;
  padding: 0;
  font-family: sans-serif;
}
.banner {
  width: 100%;
  height: 150vh;
  background-image: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)),
    url(beatles_1965_help_background.jpg);
  background-size: cover;
  background-position: center;
}
.banner-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 24px;
  font-family: sans-serif;
  text-transform: uppercase;
  text-align: center;
}
.banner-text {
  opacity: 0;
  animation: fadeInAnimation 1s ease-in forwards;
}

@keyframes fadeInAnimation {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.navbar {
  width: 80%;
  height: auto;
  padding: 35px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  filter: drop-shadow(20px 20px 10px white);
  position: relative;
  z-index: 2;
}
.logo {
  width: 600px;
}
.navbar ul li {
  list-style: none;
  display: inline-block;
  margin: 0 20px;
  position: relative;
}
.navbar ul li a {
  text-decoration: none;
  color: #fff;
  text-transform: uppercase;
}
.navbar ul li ::after {
  content: "";
  height: 3px;
  width: 0;
  background: #fff;
  position: absolute;
  left: 0px;
  bottom: -10px;
  transition: 0.5s;
}
.navbar ul li a:hover::after {
  width: 100%;
}
h1 {
  position: absolute;
  border: 1px solid #665544;
  background: #fff;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 24px;
  text-align: center;
  text-transform: uppercase;
  animation: fadeInAnimation 1s ease-in forwards;
}
p {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 18px;
  font-family: sans-serif;
  text-align: center;
  animation: fadeInAnimation 1s ease-in forwards;
  transform: translate(-50%, -50%);
  z-index: 1; /* Set z-index higher than the background */
}
.furthertext p{
  position: absolute;
  top: 90%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 18px;
  font-family: sans-serif;
  text-align: center;
  animation: fadeInAnimation 1s ease-in forwards;
  transform: translate(-50%, -50%);
  z-index: 1; /* Set z-index higher than the background */
}
h2 {
  position: absolute;
  border: 1px solid #665544;
  background: #fff;
  top: 80%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 24px;
  text-align: center;
  text-transform: uppercase;
  animation: fadeInAnimation 1s ease-in forwards;
}
.officialwebsite p {
  top: 125%;
  width: 100%;
  padding: 10px 0;
  text-align: center;
  font-family: sans-serif;
}

.officialwebsite a {
  color: #007bff;
  text-decoration: none;
}

.officialwebsite a:hover {
  text-decoration: underline;
  transition: .4s;
}