* {
  box-sizing: border-box;
  margin: 0;
}

html,
body,
.background,
.background-image {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

.background {
  position: absolute;
  z-index: -1;
  filter: brightness(0.7);
}

.background-image {
  object-fit: cover;
  object-position: 50% 0%;
}

.content-container {
  position: absolute;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 4rem;
  background: transparent;
  font-family: "Raleway", Sans-Serif;
  color: rgba(255, 255, 255, 0.9);
  font-variant: small-caps;
  font-weight: bolder;
}

.hero-wide {
  font-size: 2rem;
  text-align: center;
  animation-name: glow;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}

.hero-narrow {
  display: none;
  font-size: calc(1.7vw + 15px);
  text-align: center;
  animation-name: glow;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}

@keyframes glow {
  from {
    text-shadow: 0 0 2px rgba(255, 255, 255, 0.7);
  }
  to {
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
  }
}

@media screen and (max-width: 900px) {
  .hero-wide {
    display: none;
  }

  .hero-narrow {
    display: block;
  }
}

.social {
  margin: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.social .icon {
  height: 2rem;
  filter: invert(100%) opacity(0.9);
}

.social .icon:hover {
  filter: invert(100%) opacity(1);
}

.social .logo {
  filter: opacity(0.9);
  height: 4rem;
}

.leader-logo {
  margin: 1%;
  align-self: flex-end;
}

.leader-logo p {
  text-align: center;
}

.leader-logo img {
  max-height: 50px;
}
