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

html {
  background: #010121;
  color: white;
}

.container {
  display: flex;
  max-width: 1024px;
  border-left: 1px solid #7474742a;
  border-right: 1px solid #7474742a;
  margin: auto;
  justify-content: center;
  overflow: hidden;
  background-image: url(/hero-bg.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100vh;
  align-items: center;
}

.hero {
  display: flex;
  margin: auto;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 20px;
}

.logo img {
  width: auto;
  height: 56px;
  float: left;
  margin-bottom: 40px;
}

h1 {
  font-size: 80px;
  line-height: 1;
  letter-spacing: -4px;
  max-width: 870px;
}

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  line-height: 1;
  color: rgb(227, 227, 227);
}

h2 {
  margin-top: 56px;
  font-size: 32px;
  padding: 40px 24px;
  border-top: #7474742a 1px solid;
}

h3 {
  font-size: 24px;
}

span {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  color: #a8a8a8;
}

p {
  font-family: "inter", sans-serif;
  line-height: 28px;
  margin-bottom: 16px;
  color: rgb(174, 174, 174);
  max-width: 700px;
}

.links {
  display: flex;
  flex-direction: row;
  gap: 8px;
}

.demo-link {
  height: 48px;
  min-width: 144px;
  padding: 0 24px;
  align-items: center;
  display: flex;
  justify-content: center;
  border-radius: 50px;
  gap: 4px;
  transition: all 0.3s ease;
}

.demo-link:hover {
  gap: 8px;
}

a {
  text-decoration: none;
  color: black;
  font-family: "inter", sans-serif;
  background: white;
  align-items: center;
}

.demo-link img {
  display: flex;
  height: 16px;
  transition: all 0.3s ease;
}

a:hover {
  opacity: 0.9;
}

@media (max-width: 700px) {
  h1 {
    font-size: 48px;
    letter-spacing: -2px;
    margin: 0 16px;
    line-height: 116%;
  }

  h1, p {
    margin: 0 16px;
  }

  .links {
    flex-direction: column;
    gap: 16px;
    width: calc(100% - 32px);
  }
}
