.front-page {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding-bottom: 10vh;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

#heading {
  font-size: 6rem;
  font-weight: 500;
  padding-bottom: 2rem;
  font-weight: 500;
}

.front-page::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/desktopBackground.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
  background-blend-mode: darken;
  z-index: -1;
}

.address {
  font-size: larger;
  text-decoration: none;
  color: var(--secondary-font-color);
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.address-2 {
  font-size: larger;
  text-decoration: none;
  color: var(--ternary-font-color);
  font-size: 1em;
  padding-bottom: 1rem;
}

.address:hover {
  transform: scale(1.2);
}

.front-page .logo {
  font-size: 5em;
  text-align: center;
}

.large {
  font-size: 1.5em;
}

@media (max-width: 767px) {
  .front-page {
    font-size: 0.4rem;
    background-position: 0;
  }

  .front-page .address-2 {
    font-size: 0.8rem;
  }

  .front-page::before {
    background-image: url("../images/mobileBackground.jpg");
    background-attachment: scroll;
  }

  .front-page {
    justify-content: center;
  }

  .padding-top-10 {
    padding-top: 20rem;
  }

  #heading {
    font-size: 2rem;
    font-weight: 500;
    padding-bottom: 4rem;
    font-weight: 500;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  #heading {
    font-size: 4rem;
  }

  .front-page::before {
    background-image: url("../images/tabletBackground.jpg");
    background-size: cover;
    background-attachment: scroll;
  }
}
