* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: #ffffff;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Londrina Sketch", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
}

.page {
  width: 100%;
  height: 100%;
  padding: 40px 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}


.image-wrapper {
  flex: 0 0 45%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.main-image {
  max-width: 100%;
  height: auto;
  display: block;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.04);
}


.text-and-player {
  flex: 0 0 45%;
  margin-left: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.typing-text {
  font-family: "Londrina Sketch", cursive;
  font-size: clamp(2.2rem, 3vw, 3rem);
  line-height: 1.2;
  color: #000000;
  white-space: pre-wrap;
}


.player {
  margin-top: 60px;
  display: flex;
  gap: 16px;
  align-items: center;
}

.player-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  background-color: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: default;
  opacity: 0.35;
  padding: 0;
}


.square-icon {
  width: 15px;
  height: 15px;
  border: 5px solid #cccccc;
}


.play .triangle-icon {
  margin-left: 4px;
  width: 0;
  height: 0;
  border-top: 14px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 18px solid #cccccc;
}


.play {
  cursor: pointer;
  opacity: 0.6;
}


@media (max-width: 900px) {
  .page {
    flex-direction: column;
    padding: 24px;
  }

  .image-wrapper,
  .text-and-player {
    flex: 0 0 auto;
    width: 100%;
  }

  .text-and-player {
    margin-left: 0;
    margin-top: 32px;
    align-items: center;
    text-align: center;
  }
}
