/* style.css */

body {
  font-family: 'Arial', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f0f0f0; /* Set your desired background color */
}

main {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  background-color: #fff; /* Set your desired background color */
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

img {
  display: block;
  margin: 10px auto;
  max-width: 100%;
  height: auto;
}

audio {
  width: 100%;
  margin: 20px 0;
}

h1 {
  color: #333; /* Set your desired text color */
}

a {
  text-decoration: none;
  color: #3498db; /* Set your desired link color */
}

a:hover {
  text-decoration: underline;
}
