#welcome {
  margin-top: var(--nav-height);
  padding: 0;
  background: url("/media/images/welcome-background-1080p.webp") center;
  background-size: cover;
  height: calc(100vh - var(--nav-height));
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

#welcome-logo {
  height: 15rem;
  width: 15rem;
}

#welcome h1 {
  margin: 1rem 20% 1rem 1rem;
  border: solid 0.25rem #5791FF;
  border-radius: 50px;
  padding: 0.5rem 1.25rem;
  background-color: black;
}

#welcome h4 {
  margin: 0 0 0 20%;
  border: solid 0.25rem #5791FF;
  border-radius: 50px;
  padding: 0.5rem 1.25rem;
  background-color: black;
}

#scroll-down {
  position: absolute;
  bottom: 2rem;
  width: 3rem;
  height: 2rem;
}

#scroll-down img {
  width: 3rem;
}

@media only screen and (max-width: 1280px) {
  #welcome {
      background: url("/media/images/welcome-background-720p.webp") center;
      background-size: cover;
  }
  #welcome h4 {
      margin: 2rem;
  }
  #welcome h1 {
      margin: 1rem;
  }
}
@media only screen and (max-width: 500px) {
  #welcome {
      background: url("/media/images/welcome-background-mobile.webp") center;
      background-size: cover;
  }
}