body {
  margin: 0;
  padding: 0;
}
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/Banners/BobbyHanna_ProjectBanner.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  filter: brightness(60%);
}
.hero-content {
  position: relative;
  color: white;
  text-align: center;
  margin: 0.625rem;
}
.hero-title {
  font-size: 4rem;
  font-weight: 600;
  margin-bottom: 0;
  user-select: none;
}
.hero-subtitle {
  font-size: 2rem;
  font-weight: 200;
  margin-top: 1rem;
  user-select: none;
}
.mouse-scroll-icon{
  position: absolute;
  top: 80%;
  left: 50%;
  transform: translate(-50%, 80%);
}