body {
  margin: 0;
  padding: 0;
  font-family: Maersk Headline, -apple-system, BlinkMacSystemFont, Microsoft JhengHei, Microsoft Yahei, 微软雅黑, STXihei, 华文细黑, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 1)) no-repeat, 
              url('container-ship.jpg') no-repeat center top;
  background-size: cover;
  color: #fff;
  position: relative;
}

.content {
  position: relative;
  z-index: 2; /* Ensures text stays above the overlay */
  text-align: center;
}

h1 {
  font-size: 3rem;
  color: #ffffff; /* White text */
  margin: 0;
  text-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  font-weight: 300;
}

/* Maersk logo styling */
.maersk-logo {
  position: absolute;
  bottom: 20px;
  left: 20px;
  width: 120px;
  opacity: 0.9;
  transition: opacity 0.3s;
}

.maersk-logo:hover {
  opacity: 1;
}
