/* Reset en basis */
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  width: 100vw;
  background: linear-gradient(135deg, #eaf6fb 0%, #e2f0fa 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
}

main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.ship-img {
  width: 80vw;
  max-width: 600px;
  height: auto;
  margin-bottom: 2rem;
  box-shadow: 0 8px 32px rgba(40, 70, 110, 0.13);
  border-radius: 18px;
  background: #fff;
}

h1 {
  font-size: 2.2rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: #22405a;
  margin: 0;
  text-transform: lowercase;
  background: rgba(255,255,255,0.7);
  padding: 0.3em 1.2em;
  border-radius: 1em;
  box-shadow: 0 2px 8px rgba(40, 70, 110, 0.07);
}

/* Responsive */
@media (max-width: 600px) {
  .ship-img {
    width: 98vw;
    max-width: 98vw;
    margin-bottom: 1.2rem;
    border-radius: 10px;
  }
  h1 {
    font-size: 1.3rem;
    padding: 0.3em 0.7em;
  }
}

