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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: #333;
}

.banner {
  background-image: url('medium-article/images/bruno-raffa-IxBAUfG_oYg-unsplash.jpg');
  background-size: cover;
  background-position: center;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  position: relative;
}

.banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.4);
}

.banner-content {
  position: relative;
  z-index: 1;
  padding: 20px;
}

.banner h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.banner p {
  font-size: 1.25rem;
  font-weight: 300;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.container {
  width: calc(100% - 100px);
  max-width: 900px;
  margin: 50px auto;
  padding: 0 20px;
}

.container h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-top: 30px;
  margin-bottom: 15px;
  color: #222;
}

.container p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  text-align: justify;
  color: #555;
}

.container h3 {
  font-size: 1.25rem;
  margin-top: 24px;
  margin-bottom: 12px;
  color: #222;
}

.crew-list {
  margin-left: 1.1rem;
  margin-bottom: 24px;
  color: #444;
  line-height: 1.6;
}

.crew-list li {
  margin-bottom: 8px;
}

.spaced {
  margin-top: 28px;
}

.container a {
  color: #00ab6b;
  text-decoration: none;
  border-bottom: 1px solid #00ab6b;
  transition: all 0.3s ease;
}

.container a:hover {
  color: #008a57;
  background-color: #f0f9f5;
  padding: 2px 4px;
  border-radius: 3px;
}

/* Media queries */
@media (max-width: 1200px) {
  .container {
    width: calc(100% - 100px);
  }

  .banner h1 {
    font-size: 3rem;
  }
}

@media (max-width: 992px) {
  .container {
    width: calc(100% - 100px);
    max-width: 700px;
  }

  .banner h1 {
    font-size: 2.5rem;
  }

  .banner p {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .container {
    width: calc(100% - 100px);
  }

  .banner {
    height: 300px;
  }

  .banner h1 {
    font-size: 2rem;
  }

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

  .container h2 {
    font-size: 1.5rem;
  }

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

@media (max-width: 576px) {
  .container {
    width: calc(100% - 100px);
  }

  .banner {
    height: 250px;
  }

  .banner h1 {
    font-size: 1.5rem;
  }

  .banner p {
    font-size: 0.9rem;
  }

  .container h2 {
    font-size: 1.25rem;
  }

  .container p {
    font-size: 0.95rem;
    text-align: left;
  }
}
