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

body {
  background-image: url("../assets/bg.png");
  background-size: cover;
  height: 100vh;
}

.navbar {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 1em 5em;
  background-color: #000000;
}

.navbar img {
  width: 100px;
}

.list {
  display: flex;
  border-left: 1px solid #ffffff;
  flex-direction: row;
  padding-top: 1em;
  padding-bottom: 1em;
  padding-left: 3em;
  justify-content: space-between;
  align-items: center;
  margin-right: 400px;
  width: 70%;
}

.list-item {
  list-style: none;
  margin: 0 1em;
  font-size: 0.9em;
  color: #ffffff;
}

.button-small {
  background-color: #ba0cc5;
  border: none;
  color: #ffffff;
  padding: 8px 30px;
  border-radius: 8px;
  font-size: 0.9em;
}

.hero {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  margin: 2rem 8rem;
  position: relative;
  margin-top: 100px;
}

.hero-heading {
  font-size: 4.8em;
  color: #ffffff;
  text-align: center;
  line-height: 1.2em;
  margin-bottom: 10px;
}

.hero-description {
  font-size: 1.8em;
  color: #ffffff;
  text-align: center;
  margin-bottom: 50px;
}

.button-large {
  background-color: rgb(186, 12, 197);
  border: none;
  color: #ffffff;
  padding: 10px 30px;
  border-radius: 10px;
  font-size: 1.5em;
  font-weight: 600;
}
