@charset "UTF-8";
/* CSS Document */
header {
  height: 55px;
  display: flex; 
  flex-direction: row;
  justify-content: space-between;
  position:fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: #F1E9E6;
  z-index: 1000;
}
.left-section {
	margin-left: 20px;
}
.middle-section {
  max-width: 500px;
  display: flex;
  align-items: center;
}
.right-section {
  width: 100px;
  margin-right: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}
.header-text {
	margin-right: 20px;
	color: black;
	text-decoration: none;
}
.homepage-logo {
	width: 45px;
	height: 45px;
	margin-top: 5px;
	border-radius: 50%;
}
/*Dropdown section*/
.dropbtn {
  background-color: #F1E9E6;
  color: black;
  font-family: Ibarra Real Nova, Arial;
  font-weight: 500;
  font-size: 16px;
  margin-right: 15px;
  border: none;
  border-radius: 20px;
}
.dropdown {
  position: relative;
  display: inline-block;
}
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  min-width: 300px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
  border-radius: 20px;
}
.dropdown-content a { /*links inside the dropdown*/
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}
.dropdown-content a:hover {
	background-color: #ddd;
}
.dropdown:hover .dropdown-content { /*syntax means "when hovering over <div> of .dropdown, show the dropdown-content"*/
	display: block;
}
.dropdown:hover .dropbtn { /*syntax means "when hovering over the word 'courses', change color to white"*/
	background-color: #f1f1f1;
}

body {
 font-family: Cambria, "Hoefler Text", "Liberation Serif", Times, "Times New Roman", "serif";
 text-align: center;
 margin-top: 80px;
}

audio {
 margin: 20px 0;
}

.audio-container1 {
 margin-top: 40px;
}

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

return-section {
	display: flex; 
	justify-content:flex-start;
    align-items: right;
	margin-top: 20px;
}
.return-button {
  margin-top: 30px;
  padding: 10px 20px;
   width: 400px;
   font-size: 25px;
   color: white;
   background-color: #BCC7CD;
   border-radius: 9px;
   cursor: pointer;
   text-align: center;
}
