* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial;
}

/* Navbar */
nav {
  display: flex;
  justify-content: space-between;
  padding: 20px;
  background-color: #f5f0f0;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 20px;
}

/* Hero */
.hero {
  height: 100vh;
  background-image: url("https://images.unsplash.com/photo-1522202176988-66273c2fd55f");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero {
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
}

.content {
  position: relative;
}

.content {
  text-align: center;
  color: white;
  transform: translateY(-50px);
}

button {
  padding: 12px 25px;
  border-radius: 25px;
  background-color: #000;
  color: #fff;
  transition: 0.3s;
}

button:hover {
  background-color: #333;
  transform: scale(1.05);
}

button {
  text-transform: uppercase;
}


@media (max-width: 768px) {

  nav {
    flex-direction: column;
    align-items: center;
  }

  nav ul {
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
  }

  .hero {
    height: 80vh;
    padding: 20px;
    text-align: center;
  }

  .content h1 {
    font-size: 24px;
  }

  .content p {
    font-size: 14px;
  }

  button {
    width: 100%;
  }
}

.features {
  display: flex;
  justify-content: space-around;
  padding: 50px;
  background-color: #f5f0f0;
}

.box {
  text-align: center;
  max-width: 200px;
}

.features {
  flex-direction: column;
  align-items: center;
  gap: 20px;
}