/* Converted from SCSS to plain CSS */

/* Basic setup for all elements */
*, *:before, *:after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Styles for html and body */
html, body {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #FFC568; /* Light yellow background */
  font-size: 62.5%;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

@media screen and (max-width: 520px) {
  /* Responsive adjustments if needed */
}

/* Container for central elements */
.container {
  width: 50rem;
  height: 20rem;
  position: relative;
}

/* Container for SVG graphics */
.svg-container {
  z-index: 2;
  position: absolute;
}

/* Full-size container potentially for animations */
.mo-container {
  width: 100%;
  height: 100%;
}

/* Style for lines in SVGs */
.line {
  fill: none;
  stroke: #FFFFFF; /* White lines */
  stroke-width: 8;
  stroke-linecap: round;
  stroke-miterlimit: 10;
}

/* Style for letter elements in SVGs */
.lttr {
  fill: #763C8C; /* Deep purple color for letters */
}

/* Styles for sound control UI */
.sound {
  position: fixed;
  color: #763C8C;
  font-size: 1.6rem;
  bottom: 1rem;
  right: 1rem;
  text-decoration: underline;
  cursor: default;
}

.sound--off {
  text-decoration: line-through;
}