#controls {
  display: flex;
  margin-top: 2rem;
} 

button {
  padding: 10px;
  font-size: 16px;
}

@media screen and (max-width: 768px) {
  button {
    padding: 8px;
    font-size: 14px;
    padding: 6px;
    font-size: 12px;
    background: #36bf76;
    flex-grow: 1;
    height: 3rem;
    border: none;
    border-radius: 0.15rem;
    background: #36bf76;
    margin-left: 2px;
    box-shadow: inset 0 -0.15rem 0 rgba(0, 0, 0, 0.2);
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    color:#ffffff;
    font-weight: bold;
    font-size: 1rem;
  }
}

@media screen and (max-width: 480px) {
  button {
    padding: 6px;
    font-size: 12px;
    background: #36bf76;
    flex-grow: 1;
    height: 3rem;
    border: none;
    border-radius: 0.15rem;
    background: #36bf76;
    margin-left: 2px;
    box-shadow: inset 0 -0.15rem 0 rgba(0, 0, 0, 0.2);
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    color:#ffffff;
    font-weight: bold;
    font-size: 1rem;
  }
}

button {
  padding: 6px;
  font-size: 12px;
  background: #36bf76;
  flex-grow: 1;
  height: 3rem;
  border: none;
  border-radius: 0.15rem;
  background: #36bf76;
  margin-left: 2px;
  box-shadow: inset 0 -0.15rem 0 rgba(0, 0, 0, 0.2);
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  color:#ffffff;
  font-weight: bold;
  font-size: 1rem;
}

button:hover, button:focus {
  outline: none;
  background: #36bf76;
}

button::-moz-focus-inner {
  border: 0;
}

button:active {
  box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.2);
  line-height: 3rem;
}

button:disabled {
  pointer-events: none;
  background: lightgray;
}
button:first-child {
  margin-left: 0;
}

audio {
  display: block;
  width: 100%;
  margin-top: 0.2rem;
}


#formats {
  margin-top: 0.5rem;
  font-size: 80%;
}

#recordingsList{
	max-width: 28em;
}

.box {
  background-color: lightgray;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.box h2 {
  font-size: 28px;
  margin-bottom: 20px;
}

.box p {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 20px;
}

.box button {
  background-color: #0066cc;
  color: #fff;
  padding: 12px 20px;
  font-size: 18px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out;
}

.box button:hover {
  background-color: #0052a3;
}