:root {
  --margin-base: 8px;
  --base-font-size: 20px;
}

html {
  font-size: var(--base-font-size);
}

html,
* {
  margin: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: "Karla", sans-serif;
}

body {
  background: url("/Images/curls.png") #2d0d73;
  background-blend-mode: difference, normal;
  font-family: "Karla", sans-serif;
  font-size: var(--base-font-size);
  color: #ffffff;
  opacity: 0;
}

h1 {
  font-family: "Rajdhani", sans-serif;
  font-size: 2.6rem;
}

.secondary-button {
  padding: calc(var(--margin-base) * 1) calc(var(--margin-base) * 3);
  border: 1px solid;
}

.cta {
  padding: calc(var(--margin-base) * 2) calc(var(--margin-base) * 2);
  -webkit-box-shadow: 0px 2px 0px rgba(0, 0, 0, 0.043);
          box-shadow: 0px 2px 0px rgba(0, 0, 0, 0.043);
  background: linear-gradient(101.7deg, #d90404 29.9%, rgba(0, 0, 0, 0) 258.89%), #d90404;
  border: none;
  border-radius: 5px;
  font-size: 1.11rem;
  max-width: calc(var(--margin-base) * 30);
  color: #ffffff;
  cursor: pointer;
}

nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px calc(var(--margin-base) * 10);
}

nav ul {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: calc(var(--margin-base) * 4);
}

nav ul li a {
  color: #ffffff;
  text-decoration: none;
  font-size: 0.9rem;
}

nav ul li a.secondary-button {
  font-size: 0.8rem;
}

main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 20px calc(var(--margin-base) * 10);
}

main article {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

main article section#hero {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-width: 40vw;
  gap: calc(var(--margin-base) * 3);
}

main article section#hero section#text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: calc(var(--margin-base) * 1);
}

main article section#hero-image {
  cursor: -webkit-grab;
  cursor: grab;
  max-width: 60vw;
}

main article section#hero-image picture {
  width: 100%;
}

main article section#hero-image picture img {
  width: 100%;
}

main article p {
  font-size: 1.33rem;
  line-height: 132.9%;
  letter-spacing: -0.02em;
  color: #eaeaea;
}

footer {
  margin: 0px calc(var(--margin-base) * 10);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

footer .social-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}

footer .social-links .social-divider {
  background: #ffffff;
  width: 2px;
  height: 1.5em;
  border-radius: 5;
}

footer .social-links .social-icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4px;
  font-size: 0.8rem;
}
/*# sourceMappingURL=style.css.map */