* {
  margin: 0;
  padding: 0;
  outline: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

*::after,
*::before {
  box-sizing: border-box;
}

body {
  background-image: url("./assets/bg.png");
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
}

/* Nav bar */
nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  display: flex;
  background: black;
  justify-content: start;
  align-items: center;
  padding: 0 4em;
}

nav li {
  display: inline-block;
  list-style: none;
  color: white;
  font-weight: 600;
  margin: 20px 20px;
  cursor: pointer;
}

nav li:nth-child(1)::after {
  display: inline-block;
  padding: 10px;
  content: ">";
  font-size: 1.2em;
  font-weight: 600;
  transform: rotate(90deg);
}

nav .logo {
  height: 40px;
  margin-right: 60px;
}
/* test */
nav .line {
  height: 40px;
  border: 1px solid white;
  margin-right: 40px;
}

nav div:nth-of-type(4) {
  margin-left: auto;
}

nav .button-small {
  background-color: #ba0ec5;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: 600;
}

.container {
  max-width: 1200px;
  margin: auto;
}

.hero {
  max-width: 800px;
  margin: auto;
}

.hero .hero-heading {
  margin-top: 200px;
  font-family: "Montserrat", sans-serif;
  text-align: center;
  font-size: 4.5em;
  color: white;
}

.hero .hero-description {
  color: white;
  font-size: 2em;
  text-align: center;
  margin: 20px auto;
}

.hero .button-large {
  display: block;
  background-color: #ba0ec5;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: 600;
  font-size: 1.3em;
  margin: 20px auto;
}
