/*color theme Navy Blue, Baby Blue and White.*/
* {
  margin: 0;
  padding: 80;
  box-sizing: border-box;
}

body {
  background-color: white;
  font-family: "Caladea", sans-serif;
}

/* Navigation bar
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100vw;
  height: 200px;

}
*/
/*
.navlogo {
  display: block;
  width: 150px;
  height: 150px;
  border-radius: 25px;
  margin: 50px;

}

.navlist {
  list-style-type: none;
  align-items: center;


}

.navlist li {
  float: left;
  font-size: 25px;


}



.navlist li a {
  display: block;
  color: #000099;
  text-align: center;
  font-size: 25px;
  padding: 14px 16px;
  text-decoration: none;

}

.navlist li a:hover:not(.active) {
  box-shadow: #06f;
  background-color: #06f;
  border-radius: 50px;
  color: #FFFFFF;
}

.navlist li a.active {
  background-color: #000099;
  color: #FFFFFF;
  border-radius: 50px;

}

.navbar button {
  background-color: #000099;
  border: none;
  color: white;
  padding: 14px 16px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 25px;
  font-family: "Caladea", sans-serif;
  border-radius: 50px;
  margin-right: 50px;
  cursor: pointer;

}

.navbar button:active,
.navbar button:focus {
  outline: none;
}

.navbar button:hover {
  background-color: #06f;
}

.navbar button:focus:not(:active) {
  box-shadow: #06f;
}
*/

/* INDEX.HTML Landing Page Intro */
.intro {
  background: url(/images/class.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 500px;
  width: 100%;
  padding: 25px;

  display: flex;
  justify-content: center;


}

.mission {
  align-self: flex-end;
  bottom: 0;
  width: 50%;
  color: #0e3fe0;
  text-align: center;
  background-color: #FFFFFF;
  border-radius: 5px;
  padding: 5px;
}

.pillars {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  padding: 10px;
  margin-top: 10px;
  text-align: center;
}

div.info {
  border:#000099 solid 5px;
  padding: 15px;
  width: 300px;
  height: 400px;
  border-radius: 20px;
}




/* Global Footer */
.footer {
  height: 350px;
  width: 100%;
  border: #3e1f88;
  background-color: #330ac9;
  color: #FFFFFF;
  display: flex;
  justify-items: center;
  align-items: center;
  margin-top: 25px;
  padding: 15px;
  flex-direction: column;
  text-align: center;
}

#div2 {
  align-items: flex-end;
  margin: 10px;
  padding: 10px;
}

/* ABOUT.HTML Style */


/* CALENDAR.HTML Style */






/* CONTACT.HTML Style */







/* font style*/
.caladea-regular {
  font-family: "Caladea", serif;
  font-weight: 400;
  font-style: normal;
}

.caladea-bold {
  font-family: "Caladea", serif;
  font-weight: 700;
  font-style: normal;
}

.caladea-regular-italic {
  font-family: "Caladea", serif;
  font-weight: 400;
  font-style: italic;
}

.caladea-bold-italic {
  font-family: "Caladea", serif;
  font-weight: 700;
  font-style: italic;
}

