/* General reset */
body, h1, h2, p {
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Arial', sans-serif;
  background: #fff0f5;
  color: #222;
  overflow-x: hidden;
}

/* Header */
header {
  text-align: center;
  padding: 2rem;
  background: #e75480;
  color: white;
}

header h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

#counter {
  font-size: 1.3rem;
}

/* Timeline */
.timeline {
  display: flex;
  flex-direction: column;
}

.moment {
  position: relative;
  height: 100vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.overlay {
  background: rgba(0,0,0,0.5);
  color: white;
  padding: 2rem;
  border-radius: 1rem;
  text-align: center;
  max-width: 600px;
}

.overlay h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.overlay p {
  font-size: 1.2rem;
}