[data-theme="dark"] {
  --bg: hsl(0, 0%, 0%);
  --bg--shadow: hsl(0, 0%, 10%);

  --text-primary: hsl(0, 0%, 100%);

  --button-color: hsl(252, 90%, 20%);
}

* {
  padding: 0;
  margin: 0;
}

html,
body {
  background-color: var(--bg);
  color: var(--text-primary);
  margin: 0;
  padding: 0;
}

a {
  color: var(--text-primary);
  text-decoration: none;
}

.nav {
  background-color: var(--bg);
  max-width: 1280px;
  width: 100%;
  padding: 1rem;
  height: auto;
  font-size: 1rem;

  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-flow: row wrap;
  position: relative;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: center;
  box-shadow: 0px 1px var(--bg--shadow);
}

.nav-right {
  display: flex;
  justify-content: space-around;
  gap: 1rem;
}

#theme {
  color: var(--text-primary);
}

.hero {
  height: 93vh;
  font-size: 1.2rem;
  position: relative;
}

.hero-text {
  font-size: inherit;
  text-align: center;
  overflow-wrap: normal;
  top: 0px;
  padding: 0rem 0.2rem;
}
.hero-text h1 {
  font-size: 3rem;
}

.hero-image {
  width: 100%;
  height: 93vh;
  max-width: 1000px;
}

.hero-buttons {
  padding-top: 1.75rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

.hero-button {
  width: 7rem;
  height: 2.25rem;
  background-color: var(--button-color);
  font-size: 1.25rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 0.5rem;
}

#pricing-button {
  width: 9rem;
}
