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

body {
  font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
  background-color: #282c34;
  color: #61dafb;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  text-align: center;
}

h1 {
  font-size: 3rem;
  color: #21a9ee;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

#quote {
  font-size: 1.8rem;
  margin: 1.5rem 0 1rem;
  text-align: center;
  font-style: italic;
  line-height: 1.5;
  color: #ffffff;
}

#author {
  font-size: 1.2rem;
  color: #61dafb;
  margin-bottom: 2rem;
}

/* Buttons and Checkbox */
button, input[type="checkbox"] {
  font-size: 1rem;
  padding: 0.7rem 1.5rem;
  margin: 0.5rem;
  border: 2px solid #61dafb;
  border-radius: 10px;
  background-color: #282c34;
  color: #61dafb;
  cursor: pointer;
  transition: all 0.3s ease;
}

button:hover, input[type="checkbox"]:hover {
  background-color: #61dafb;
  color: #282c34;
  transform: scale(1.05);
}

#autoplay-status {
  margin-top: 1.5rem;
  font-size: 1.1rem;
}

#hiddenDiv {
  margin-top: 1rem;
}

#quote-form {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

#quote-form textarea,
#quote-form input {
  width: 100%;
  max-width: 350px;
  padding: 0.5rem;
  border-radius: 5px;
  border: 1px solid #61dafb;
  background-color: #1e2128;
  color: #ffffff;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }

  #quote {
    font-size: 1.5rem;
  }

  #author {
    font-size: 1rem;
  }

  button {
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
  }
}
