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

body, html {
  font-family: Arial, sans-serif;
  color: #000;
  background: white;
}

.navbar {
  display: flex;
  justify-content: end;
  align-items: center;
  padding: 1rem 2rem;
}

.logo {
  height: 50px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.nav-links a {
  text-decoration: none;
  color: #000;
  position: relative;
}

.nav-links a::after {
  content: "";
  display: block;
  height: 2px;
  width: 0;
  background: black;
  transition: width 0.3s;
}

.nav-links a:hover::after,
.nav-links a:focus::after {
  width: 100%;
}

.hero {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 90vh;
  /* width: 100%; */
  padding: 2rem;
  background: url('images/background-lines.svg') no-repeat bottom center;
  /* background-size: cover; */
  text-align: center;
}

.hero-text h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero-text p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.cta {
  display: inline-block;
  background: black;
  color: white;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .nav-links {
    gap: 1rem;
  }

  .hero-text h1 {
    font-size: 1.8rem;
  }

  .hero-text p {
    font-size: 1rem;
  }

  .hero {
    height: auto;
    padding: 3rem 1rem;
    background-position: bottom center;
  }
}
