#home {
  min-height: calc(100vh - var(--nav-height) - var(--footer-height)); 
  position: relative;
}

#home img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 100;
  opacity: 0.9;
}

.img_mask {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 101;
  background-color: rgba(0, 0, 0, 0.5);
}

.home-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: calc(100% - 200px);
  position: absolute;
  z-index: 200;
}

.home-content-text {
  width: 100%;
  text-align: center;
  padding: 20px;
}

.home-content-text p {
  letter-spacing: 4px;
  font-size: 1.5rem;
  font-weight: lighter;
  margin-bottom: -10px;
  text-shadow: 
    0 0 0.5px var(--c2),
    0 0 1px var(--c2);
}

.home-content-text h1 {
  font-size: 5em;
  font-weight: lighter;
  letter-spacing: 12px;
  color: var(--c3);
  text-shadow: 
    0 0 6px var(--c3),
    0 0 1px var(--c3);
}

.home-content-text h2 {
  font-weight: lighter;
  letter-spacing: 4px;
  text-shadow: 
    0 0 0.5px var(--c2),
    0 0 1px var(--c2);
}

@media (max-width: 1080px) {
  .home-content-text h1 {
    font-size: 3.5em;
    margin-bottom: 10px;
  }
}

@media (max-width: 820px) {
  .home-content-text h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
  }

  .home-content-text h2 {
    font-size: 1.1em;
  }
}