/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background-color: #262D25;
  color: black;
  font-family: Verdana;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1; 
}

header h1{
  color: white;
  font-size: 4em;
  font-weight:900;
  font-family: 'Work Sans', sans-serif;}

header{
  background-color: #262D25;}

main {
  background-color: #3C473A;}

footer {
  background-color: #1A1F19;}

header, main, footer {
    width: 100vw; /* Ensures the background spans the full width of the viewport */
    box-sizing: border-box; /* Includes padding and border in the element's total width */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center; /* Centers the content within the boxes */
}

  
header h2{
  color: white;
  font-size: 2em;
  font-weight:900;
  font-family: 'Work Sans', sans-serif;
  }

#audio {
  margin: 2em 0;
  padding: 1em;
  background-color: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 8px;
  }

#audio h2 {
  font-size: 1.5em;
  margin-bottom:2.5em;
  }

.audio-player {
  margin-bottom: 1em;
  }

.audio-player p {
  width: 100%;
  max-width: 400px;
  outline: none;}



@font-face {
  font-family: 'Work Sans';
  src: url('Fonts/work-sans/WOFF2/WorkSans-Black.woff2') format('woff2');
  font-weight: 900;
  font-style: normal;}