/* General styles */
body {
  font-family: 'Open Sans' /* Set Open Sans as the default font */
  margin: 0;
  padding: 0;
}

header {
  text-align: center;
  font-family: 'Oswald'; /* Apply Oswald to header text */
  font-size: 22px;
  padding: 20px;
  color: white;
  background-color: black;
}

.header-image {
  max-width: 10%;
  height: auto;
  border-radius:6px;
}

.intro {
  padding: 20px;
  background-color: #ffffff;
  margin: 0 10%;
  margin-top:50px;
  margin-bottom:50px;
}

.quotes {
  padding: 20px;
  background-color: #f4f4f4;
}

.quotes h2 {
  font-family: 'Oswald', sans-serif; /* Apply Oswald to quotes section headings */
}

/* Modal styles */
.w3-modal {
  display: none; 
  position: fixed; 
  z-index: 1; 
  left: 0;
  top: 0;
  width: 100%; 
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.4);
}

.w3-modal-content {
  background-color: #fefefe;
  margin: 15% auto; 
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
  max-width: 600px;
}

.w3-button {
  border: none;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  cursor: pointer;
}

.w3-quote {
  background-color: black; /* Change button background to white */
  color: black; /* Optional: Adjust text color to ensure readability */
}

.w3-display-topright {
  position: absolute;
  right: 16px;
  top: 0;
}