* {
  box-sizing: border-box; /* Terapkan box-sizing ke semua elemen */
  margin: 0; /* Hapus margin default */
  padding: 0; /* Hapus padding default */
}

h2 {
  font-size: 28px;
}

#hero {
  display: flex; /* Use flexbox for layout */
  align-items: center; /* Center items vertically */
  padding: 0px 50px; /* Add padding for spacing */
  height: 95vh; /* Set height to 100% of the viewport height */
}

.hero-content {
  max-width: 50%; /* Limit the width of the text content */

  text-align: left; /* Default text alignment */
}

.hero-content h2 {
  font-size: 42px; /* Adjust font size for the heading */
}