@import url("https://fonts.googleapis.com/css2?family=Aboreto&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400..900&display=swap');
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Orbitron", sans-serif;
  font-weight: 400;
  font-style: normal;
  background-color: #000000;
  color: #ffffff;
  line-height: 1;
  letter-spacing: -0.1rem;
}

h1 {
  font-size: 4rem;
  font-weight: 500;
  line-height: 1;
}

a,
p {
  color: #ffffff;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 550;
  line-height: 1.5;
  display: inline-block;
}

.hero {
  position: relative;
  width: 100%;
  height: 100svh;
  overflow: hidden;
}

.hero img#glassTexture {
  display: none;
}

.hero-content {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.hero-content h1 {
  width: 60%;
}

.bottom-text {
  font-size: 7rem;
  font-weight: 500;
  line-height: 1.2;
  font-family: "Orbitron", sans-serif;
}

@media (max-width: 1000px) {
  .hero-content {
    align-items: flex-start;
    flex-direction: column-reverse;
    gap: 1rem;
  }

  .hero-content h1 {
    width: 100%;
  }
  
  .bottom-text {
    font-size: 2rem;
  }
}
