body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #f0f8ff;
  color: #333;
  overflow-x: hidden; /* Prevent horizontal scrolling */
}

header {
  text-align: center;
  background-color: #4caf50;
  color: white;
  padding: 5px 0; /* Reduced header height */
  font-size: 18px;
  font-weight: bold;
}

main {
  display: flex;
  flex-wrap: wrap; /* Allow wrapping for smaller screens */
  justify-content: center; /* Center content horizontally */
  align-items: center;
  padding: 10px; /* Reduced padding */
  max-width: 100%; /* Ensure it fits within the screen */
}

.left-section, .right-section, .center-section {
  flex: 1 1 40%; /* Allow sections to shrink and grow */
  max-width: 40%; /* Adjusted width to make images larger */
  text-align: center; /* Center content horizontally */
}

.center-section {
  flex: 1 1 20%; /* Adjusted width for the button */
  display: flex;
  justify-content: center;
  align-items: center;
}

button#play-audio {
  padding: 10px 20px;
  font-size: 16px;
  background-color: #4caf50;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

button#play-audio:hover {
  background-color: #45a049;
}

.left-section img {
  width: 100%; /* Ensure all images have the same width */
  height: auto; /* Maintain aspect ratio */
  max-height: 400px; /* Increased image size */
  border: 5px solid #4caf50;
  border-radius: 10px;
}

.right-section img {
  width: 100%; /* Ensure all images have the same width */
  height: auto; /* Maintain aspect ratio */
  max-height: 500px; /* Increased image size */
  border: 5px solid #4caf50;
  border-radius: 10px;
}