.aspot {
  height: 75vh;
  position: relative;
  overflow: hidden;
  background-color: #0a1828;
  background-image: url("/images/homepage/aspot-bg-sm.png");
  background-size: cover;
  background-position: center;
  margin-bottom: 40px;
}

@media (min-width: 768px) {
  .aspot {
    background-image: url("/images/homepage/aspot-bg-md.png");
  }
}
@media (min-width: 992px) {
  .aspot {
    background-image: url("/images/homepage/aspot-bg-lg.png");
  }
}

.aspot-content {
  position: absolute;
  align-items: start;
  width: 100%;
  max-width: 1400px;
  z-index: 100;
  margin: auto;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  gap: 16px;
}

h1 {
  user-select: none;
  font-size: 2rem;
  text-shadow: 0 0 8px black, 0px 4px 20px rgba(0, 0, 0, 0.6);
  -webkit-text-stroke-width: 2;
  -webkit-text-stroke-color: #000;
  text-align: center;
}

h1 > span {
  color: #ecc35c;
}

/* // Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
  .aspot {
    height: 50vh;
  }

  .aspot-content {
    align-items: center;
  }

  h1 {
    text-align: left;
  }
}

/* // Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
  .aspot {
    height: 70vh;
  }
  h1 {
    font-size: 4rem;
  }
}
