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

body {
  font-family: Arial, sans-serif;
}

.hero {
  position: relative;
  background-image: url('vancouver-harbor.jpg');
  background-size: cover;
  background-position: center;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
  padding: 0 1rem;
}

/* Comment out or remove the following rule to remove the dark background
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: -1;
}
*/

.nav {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1rem;
}

.nav ul {
  display: flex;
  justify-content: flex-end;
  list-style-type: none;
}

.nav ul li {
  margin-left: 1rem;
}

.nav ul li a {
  color: #fff;
  text-decoration: none;
}

.hero-content {
  max-width: 800px;
  z-index: 1;
}

.content-box {
  background-color: rgba(255, 255, 255, 0.7); /* Change the background color to semi-transparent white */
  padding: 1.5rem;
  border-radius: 5px;
}

.content-box h1, .content-box p {
  color: #000; /* Change this to your preferred text color */
}

/* Comment out or remove the following rule to remove the text-shadow
.hero h1, .hero p {
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
*/

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

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

.cta {
  background-color: #f04a5b;
  padding: 0.75rem 1.5rem;
  font-size: 1.1rem;
  color: #fff;
  text-decoration: none;
  border: none;
  cursor: pointer;
}

@media screen and (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }

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

  .nav ul {
    display: none;
  }
}
