* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
  background-color: #000;
  color: #fff;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

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

a,
p {
  color: #fff;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1;
  display: inline-block;
}

nav {
  position: fixed;
  width: 100%;
  padding: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  z-index: 2;
}

nav .nav-links {
  display: flex;
  gap: 1rem;
}

.logo img {
  width: 120px;
}

.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%;
}