* {
  box-sizing: border-box;
}

body {
  background-color: rgb(89, 63, 88);
  font-family: 'Poppins', sans-serif;
  margin: 0;
  min-height: 100vh;
  overflow-y: auto; /* Allows natural scrolling for entire content */
}

header {
  font-family: 'Poppins', sans-serif;
  margin-bottom: 20px;
  background-color: rgb(89, 63, 88);
  align-items: center;
  text-align: center;
}

.audio-suggestion {
  font-size: 1rem;
  color: #ffffff;
  margin-top: 10px;
}

.audio-suggestion a {
  color: #62aeff; /* Adjust the color for better visibility */
  text-decoration: none;
}

.audio-suggestion a:hover {
  text-decoration: underline;
}

h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5em;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 1em;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

/* Styling for the main container */
main {
  min-height: calc(100vh - 80px); /* Full viewport minus the footer height */
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  padding-bottom: 1rem; /* Space before footer */
}

/* Styling for the buttons container */
#buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1rem;
  max-width: 800px;
  margin: 0 auto;
}

/* Styling for the buttons */
.btn {
  background-color: rgb(113, 85, 111);
  border-radius: 5px;
  border: none;
  color: #fff;
  padding: 1.5rem 3rem;
  font-size: 1.2rem;
  font-family: inherit;
  cursor: pointer;
  transition: opacity 0.3s, transform 0.3s ease;
}

.btn:hover {
  opacity: 0.9;
  transform: scale(1.05);
}

.btn:focus {
  outline: none;
}

/* Footer styling to stay at the bottom */
footer {
    width: 100%;
    height: 80px; /* Adjusted to a more standard size */
    text-align: center;
    padding: 1rem 0; /* Adds space within the footer */
    font-size: 0.9rem;
    color: #fff;
    background-color: rgba(89, 63, 88, 0.408);
    position: relative;
    bottom: 0;
}
