body {
  font-family: Arial, sans-serif;
  background-color: #f8f9fa;
  color: #333;
}

.bg-teal {
  background-color: #008080; /* Teal background color */
  color: #ffffff; /* White text color */
}

.homepage-title {
  font-size: 3.5rem; /* Largest text size for the homepage title */
  font-weight: bold;
}

.logo-container {
  max-width: 150px; /* Adjust the maximum width of the logo */
  text-align: right; /* Right justify the logo */
}

.logo-container img {
  width: 100%;
  height: auto;
}

.section-title {
  font-size: 2.5rem;
  color: #008080;
  border-bottom: 2px solid #008080;
  padding-bottom: 10px;
  text-align: center;
}

.about-content,
.contact-content,
#calendar-content,
.teacher-bio-content {
  background-color: #ffffff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.teacher-bio-content {
  display: flex;
  align-items: center;
}

.profile-image-container {
  max-width: 120px; /* Adjust the size of the profile image */
}

.profile-image-container img {
  width: 100%;
  height: auto;
  border-radius: 50%; /* Makes the image circular */
}

.teacher-bio-text {
  margin-left: 20px;
}

footer {
  background-color: #008080;
  color: #ffffff;
  font-size: 0.9rem;
}
