body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, Arial, sans-serif;
  background: #24292E;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}


.container {
  text-align: center;
  background: #111827;
  padding: 40px;
  border-radius: 16px;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/*COLOR CHIDO #111827; */


h1 {
  margin-bottom: 10px;
}

h2 {
  margin-bottom: 20px;
  color: #38bdf8;
}

audio {
  width: 100%;
  margin-bottom: 20px;
}

button {
  padding: 12px 20px;
  margin: 5px;
  font-size: 16px;
  border: none;
  border-radius: 8px;
  background: #2563eb;
  color: white;
  cursor: pointer;
}

button:hover {
  background: #1d4ed8;
}

.footer {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: #fff;
  color: black;
  text-align: center;
}

