* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body {
  background: #ffffff;
  color: #111;
}

/* HERO */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Rope container */
.rope-container {
  display: flex;
  gap: 12px;
}

/* Letter wrapper */
.letter {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: swing 2s ease-in-out infinite;
  transform-origin: top center;
}

/* Rope */
.letter::before {
  content: "";
  width: 2px;
  height: 40px;
  background: #ccc;
  display: block;
}

/* Letter box */
.letter span {
  display: inline-block;
  background: #111;
  color: #fff;
  padding: 12px 16px;
  font-size: 2rem;
  font-weight: 600;
  border-radius: 4px;
}

/* Swing animation */
@keyframes swing {
  0% { transform: rotate(2deg); }
  50% { transform: rotate(-2deg); }
  100% { transform: rotate(2deg); }
}

/* Add variation */
.letter:nth-child(odd) {
  animation-duration: 2.5s;
}
.letter:nth-child(even) {
  animation-duration: 3s;
}

/* SECOND SECTION */
.info {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  background: #f7f7f7;
}

.content {
  max-width: 600px;
  text-align: center;
}

.content h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.content p {
  font-size: 1.1rem;
  color: #444;
  line-height: 1.6;
}