@charset "utf-8";
/* CSS Document */
.button {
  border: none;
  color: white;
  padding: 16px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  transition-duration: 0.4s;
  cursor: pointer;
}

.button1 {
  background-color: white; 
  color: black; 
  border: 2px solid #E20A00;
}

.button1:hover {
  background-color: #E20A00;
  color: white;
}

.container-2 {
	display: flex;
	justify-content: center; /* Horizontally center */
	align-items: center; /* Vertically center */

}

/* Image styles */
.centered-image img {
	max-width: 90%;
	max-height: auto;
	display: block;
	margin: 0 ; /* Horizontally center within the container */
}

  /* Styling for the President's Quote Section */
.president-quote-section {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  background-color: #e3e3e3;
  border-radius: 12px;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.15);
  margin: 20px auto;
  max-width: 1200px;
  flex-direction: row; /* Default: image and text in the same row */
}

/* Styling for the President's Image */
.president-image {
  width: 250px;
  height: 250px;
  border-radius: 10%;
  margin-right: 25px;
  object-fit: cover;
  box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease;
}

/* Hover effect for the President's Image */
.president-image:hover {
  transform: scale(1.05);
}

/* Styling for the Quote Container */
.quote-container {
  max-width: 600px;
  text-align: left;
}

/* Styling for the President's Quote */
.president-quote {
  font-size: 26px;
  font-style: italic;
  margin-bottom: 12px;
  color: #333;
  line-height: 1.4;
  position: relative;
}

/* Styling for the enlarged quotation marks */
.quote-mark {
  font-size: 40px;
  color: #555;
  vertical-align: top;
  line-height: 0.6;
}

/* Mobile Responsive Styling */
@media (max-width: 768px) {
  .president-quote-section {
    flex-direction: column; /* Stack image and text vertically */
    text-align: center;
  }

  .president-image {
    margin-right: 0; /* Remove margin on the right for centered image */
    margin-bottom: 20px; /* Add space between image and text */
  }

  .quote-container {
    text-align: center; /* Center text on mobile */
  }
	
	.president-quote {
	  font-size: 16px;
		line-height: 2;
	}	
}

