body {
  font-family: 'Segoe UI', sans-serif;
  background: #fffafc;
  margin: 0;
  padding: 0;
  color: #333;
}

header {
  background: linear-gradient(to right, #cce5ff, #ffcce5);
  padding: 2rem;
  text-align: center;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

section {
  padding: 2rem;
  border-bottom: 1px solid #eee;
}

.video-grid {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

iframe {
  width: 100%;
  max-width: 300px;
  height: 180px;
  border: none;
}

.color-swatches {
  display: flex;
  gap: 1rem;
}

.swatch {
  width: 100px;
  height: 100px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: white;
}

.baby-blue {
  background-color: #a3d5ff;
}

.baby-pink {
  background-color: #ffb6c1;
}

.baby-red {
  background-color: #ff6f61;
}

.floating-svg {
  text-align: center;
  margin-top: 2rem;
}

.typewriter {
  animation: float 3s ease-in-out infinite;
}

.float-container {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 1rem;
}

.float {
  width: 120px;
  border-radius: 10px;
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}

footer {
  background: #f0f0f0;
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
}

