@import url("https://fonts.googleapis.com/css2?family=Hanken+Grotesk:wght@100;400&display=swap");
*,
*:before,
*:after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --black: black;
  --white: white;
  --gradient: linear-gradient(
      to right,
      rgba(255, 59, 160, 1),
      rgba(236, 191, 191, 1),
      rgba(92, 36, 255, 1),
      rgba(217, 79, 213, 1)
    )
    1;
}

ul,
li {
  list-style: none;
}
a {
  text-decoration: none;
}

html {
  font-size: 62.5%;
}
body {
  background-color: var(--black);
  color: var(--white);
  font-family: "Hanken Grotesk", sans-serif;
}
/* Navbar Section */

header .navbar {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 3rem;
  font-size: 1.5rem;
}
header .navbar-list,
header .navbar-icons {
  display: flex;
  gap: 3rem;
}
header .navbar-icons {
  font-family: inherit;
}

header .navbar ul li a {
  color: var(--white);
}

/* Main Section */
section {
  height: 87vh;
  width: 100%;
  text-align: center;
  background-image: url("./bg.png");
  background-repeat: no-repeat;
  background-position: 50% 100%;
  background-size: 100%;
}
section .container {
  padding: 6em;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

section .container h1 {
  font-size: 5em;
  background: linear-gradient(
    to right,
    rgba(255, 59, 160, 1),
    rgba(236, 191, 191, 1),
    rgba(92, 36, 255, 1),
    rgba(217, 79, 213, 1)
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

section .container h2 {
  margin-top: 1rem;
  font-size: 3em;
}

section .container p {
  font-weight: 100;
  line-height: 3rem;
  text-align: center;
  margin-top: 1rem;
  padding: 0 34rem;
  letter-spacing: 0.1em;
  font-size: 1.5em;
}

section .container .buttons {
  margin-top: 2rem;
}

section .container .buttons button {
  cursor: pointer;
  background: var(--black);
  color: var(--white);
  outline: none;
  padding: 1.5rem 4rem;
  margin: 0.5rem;
  border: 2px solid var(--white);
  border-radius: 4em;
}

.container .buttons button:first-child {
  position: relative;
  border: none;
  border-radius: 40px;
  color: #fff;
  background-color: transparent;
  box-sizing: border-box;
  display: inline-block;
}

.container .buttons button:first-child::before {
  content: "";
  position: absolute;
  top: -0.2em;
  left: -0.2em;
  right: -0.2em;
  bottom: -0.2em;
  border-radius: inherit;
  border: 0.2em solid;
  border-image: var(--gradient);
  z-index: -1;
}
