body {

  margin: 0;
  padding: 10;

}

.container {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 1px solid black;
  border-radius: 5px;
  padding: 30px 250px 30px 250px;
  margin-bottom: -1px;
  background: linear-gradient(45deg,#f2f2f2, #a9b9c7);
}


.header {
  background: linear-gradient(45deg,#f2f2f2, #a9b9c7);
  text-align: center;
  border: 2px solid #666666;
  border-radius: 5px;
  padding: 10px;
  margin: 20px;
}

.logo {
  border-radius: 100px;
  width: 1220px;
  height: 166px;
  padding: 20px 70px 2px 70px;
  margin-top: 50px;
  margin-bottom: 40px;
 }

.title {
  margin-top: 0px;
  font-size: 50px;
  font-family: 'Libre Baskerville', sans-serif;
}

.title a{
  color: black;
  text-decoration: none;
  }

.title a:hover{
  color: blue;
  text-decoration: underline;
  }

.sub-heading {
  font-family: 'Libre Baskerville', sans-serif;
  text-align: center;
  font-size: 14px;
  font-weight: normal;
  margin-top: 10px;
  color: #555555; /* Use a darker grey color */
}

.separator {
  border: none;
  border-top: 1px solid black;
  margin: 20px 0;
  background: white;
}

#note-of-the-day h2 {
  /* Add your styles for the "Note of the Day" heading here */
  text-align: center;
  font-size: 30px;
  margin-bottom: 0px;
  /* Add any other styles you want */
}

#note-of-the-day a {
  color: black;
  text-decoration: none;
}

#note-of-the-day a:hover {
  color: blue;
  text-decoration: underline;
}

.note-of-the-day {
  background: white;
  padding: 0px;
  }

  #iframe-note {
  display: flex;
  margin-top: 0px;
  justify-content: center;
  align-items: center;
  height: 100%; /* Set the desired height for the container */
}

#note-iframe {
  width: 95%; /* Set the width to fill the container */
  height: 1000px; /* Set the height to fill the container */
  }

#expand {
  height: 40px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

button#expand-button {
  font-size: 12px;
  width: 18px;
  height: 18px;
  border: 1px solid;
  background: white;
  align-content: center;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  opacity: 0.3;
}

button#expand-button:hover {
  opacity: 1;
  font-size: 20px;
  width: 30px;
  height: 30px;
}

/* Style the tab */
.tab {
  overflow: hidden;
  border: 1px solid #ccc;
  background-color: #f1f1f1;
  display: flex;
  justify-content: center;
  height: 45px;
}

.tab .tab-button {
  background-color: inherit;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 20px 16px;
  transition: 0.3s;
  }

.tab .tablinks {
  /* Other styles */

  border-radius: 20px; /* Add rounded corners */
  background: linear-gradient(135deg, rgb(202, 248, 128) 0%, rgb(113, 206, 126) 100%); /* Apply gradient background */
  margin-right: 15px;
  width: 120px;
  font-size: 16px;
}

.tab .tablinks.active {
  background: #0DA88C; /* Change the background color */
  color: white; /* Change the text color */
}

/* Change background color of non-active tab buttons on hover */
.tab .tab-button:hover {
  background-color: lightgreen;
  opacity: 85%;
}

/* Change background color of non-active tab links on hover */
.tab .tablinks:hover {
  background: lightgreen; /* Change the background color on hover */
  opacity: 75%;
}
/* Style the tab content */
.tabcontent {
  display: none;
  border: 1px solid #ccc;
  border-top: none;
}

#iframe-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 800px; /* Adjust the desired height of the iframe container */
  width: 90%;
}

/* Style the iframe */
#contentFrame {
  height: calc(100vh - 200px); /* Adjust the 200px value as needed */
  width: 80%;
  height: 100%;
}

/* Style Contact Section */

#contact {
  text-align: center;
  padding: 20px 0;
  margin: 20px 0;
}

/* Style the email link */
#contact a.contact-link {
  font-weight: normal; /* Reset font weight */
  color: blue; /* Set the default link color */
  text-decoration: none;
}

/* Add bold font on hover for the email link */
#contact a:hover {
  font-weight: bold;
}

.fa {
  padding: 10px;
  font-size: 15px;
  width: 15px;
  text-align: center;
  text-decoration: none;
  margin: 5px 2px;
  border-radius: 50%;

}

.fa:hover {
    padding: 10px;
  font-size: 15px;
  width: 15px;
  text-align: center;
  text-decoration: none;
  margin: 5px 2px;
  border-radius: 0%;
}
.fa-twitter {
  background: #55ACEE;
  color: white;
}

