@charset "UTF-8";

/* used w3 schools for background image code https://www.w3schools.com/cssref/pr_background-image.php */
/*dropdown menu from w3 school https://www.w3schools.com/css/css_dropdowns.asp*/
/* colors from https://coolors.co/ */
/* Font: https://fonts.google.com/selection/embed*/
/*CSS Navbar: https://www.w3schools.com/howto/howto_css_dropdown_navbar.asp */
/*Carousel code and javascript by Mrs.Tarrico*/

h1 {
	text-align: center;
	background-color: #101935ff;
	font-size: 2.5em;
	color: #F7F0F5;
}
h2{
	text-align: center;
	
}

body {
 	background-image: url("images/backgroundimgopt.jpg");
 	background-color: #cccccc;  


}

.blackborder {
	border-style: solid;
	border-width: 5px;
	border-color: #00171F;
	border-radius: 7px; 
}
.background {
	background-color: #F7F0F5;
	opacity: 1;  
}

.widthS {
	width: 20%
}
.widthC {
	width:100%
}
.headerfont {
  font-family: "Quicksand", sans-serif;
  text-align: center;
  background-color: #101935ff;
  font-size: 4em;
  color: #F7F0F5;
}
.floatright{
	float: right;
}
.clearfix {
	overflow: auto;
}

.quicksand {
  font-family: "Libertinus Keyboard", system-ui;
  font-weight: 400;
  font-style: normal;  
 }
.imagemargin	{
	
	margin-top: 10px;
	margin-bottom: 10px;
	margin-right: 10px;
}
.textmargin{
	margin: 10px; 
}
.boxmargin {
	margin-top: 50px; 
	margin-bottom: 50px;
}
/*www.w3schools.com/css/css_margin.asp*/
.padding {
	padding-top: 60px;
	padding-bottom: 60px;
}

ul {
	list-style-type: none; /* Remove the default bullet */
	margin: 0px; /* Removed default margin */
	padding: 0px; 
	background-color: #101935ff; /* Determines background, font-size, and other properties*/ 
	font-size: 1.3em;
	color: #F7F0F5;
	overflow: hidden;
	border-radius: 7px; 
	border-width: 5px;
}

ul li {
	float: left;
}

ul li a.menu {
	color: white;
	text-decoration: none;
	padding: 14px 16px;
	display: block;
	border-radius: 7px;   
	border-width: 5px;
	margin-right: 30px;
	margin-left: 30px;
}

ul li a:hover {
	background-color: rgb(12, 1, 31); 
}
.textfont {

  font-family: "Karla", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1em; 
}


.navbar {
  overflow: hidden;
  background-color: #101935ff; 
  margin: 0px
}

.navbar a {
  float: left;
  font-size: 21px;
  color:#101935ff ;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
   
}

.dropdown {
  float: left;
  overflow: hidden;
}

.dropdown .dropbtn {
  font-size: 21px;  
  border: none;
  outline: none;
  color: white;
  padding: 14px 16px;
  background-color: inherit;
  font-family: inherit;
  margin: 0;
}

.navbar a:hover, .dropdown:hover .dropbtn {
  background-color: rgb(12, 1, 31);;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  float: none;
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.dropdown-content a:hover {
  background-color: #ddd;
}

.dropdown:hover .dropdown-content {
  display: block;
}
/* Carousel contianer */

.carousel {
	width: 100%; /* full width of parent container*/
	max-width: 400px; /* optional max width*/
	height:100%;
	max-height: 800px;
	overflow: hidden; /*hide overflowing sides*/
	margin: auto; /* center carousel*/
}

/*slides container - row of images */

.slides {
	display: flex;
	transition: transform 0.5s ease; /* smooth sliding animation over half second*/
}
.slides img {
	width: 100%;
	height:auto; /* maintain aspect ratio*/
	flex-shrink: 0; /* prevent image shrinking*/
}