/* RESET */

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

/* BODY */

body {
  font-family: "Outfit", sans-serif;
  background: var(--bg-main);
  color: var(--text-primary);
  line-height: 1.6;
  padding-top: 80px;
}

/* TYPOGRAPHY */

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Sora", sans-serif;
  line-height: 1.2;
}

.hero-title {
  font-size: 3.8rem;
  font-weight: 700;
}

h2 {
  background: linear-gradient(
    to right,
    var(--primary),
    var(--accent)
  );

  background-clip: text;
  color: transparent;

  font-size: 2.5rem;
  font-weight: 600;
}

/* LINKS */

a {
  text-decoration: none;
  color: inherit;
}

/* IMAGES */

img {
  max-width: 100%;
  display: block;
  height: auto;
}

/* LISTS */

ul {
  list-style: none;
}