@charset "UTF-8";

h1 {
	text-align: center;
	background-color: #D9DCD6;
	font-size: 3.5em;
}

h2 {
	text-align: center;
	display: block;
	color: #D9DCD6; 
}

.widthSm {
	width: 20%;
}


p {
	text-align: center;
	color: #D9DCD6;
	font-size: 1.2em;
}

.roundimg {
	border-radius: 10px;
	
}

body {
	background-color: #16425B;
}

.floatright {
	float: right;
}

.floatleft {
	float: left;
}

.center {
	align-content: center;
}

.marginsm {
	margin: 2%;
}

.margin {
	margin: 0.39%;
}

.flexcontainer p {
	flex: 1;
}

.flexcontainer1 {
	display: flex;
}

.maindiv {
	border-style: dashed;
	border-width: 3px;
	border-color: #D9DCD6;
	border-radius: 5px;
	
	overflow: auto;
	
	margin: 2%;
	
	padding: 2%;
	
	display: flex;
	
	align-items: center;
	
	/*font family, font weight, font style*/
	
}

.otherdiv {
	margin-bottom: 2%;
}

.displayblock {
	display: block;
}


.link {
	color: #9698a8;
}

/* The gallery section was made with the help of https://www.w3schools.com and Naaisha Agarwal*/

.gallery {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
     justify-content: center;
 }

.gallery img {
      width: auto;
      height: 300px;
      border-radius: 8px;
}

@media (max-width: 600px) {
	.gallery {
		flex-direction: column;
        align-items: center; 
}
    .gallery img {
        max-width: 90%; 
      }
}

/*End of gallery section*/

/*NavBar was created with the help of https://www.w3schools.com/css/css_dropdowns.asp*/

.navbar {
  overflow: hidden;
  background-color: #D9DCD6;
  text-align: center;
  display: flex;
  justify-content: center;
}

.navbar a {
  float: left;
  font-size: 25px;
  color: black;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

.dropdown {
  float: left;
  overflow: hidden;
}

.dropdown .dropbtn {
  font-size: 25px;
  border: none;
  outline: none;
  color: black;
  padding: 14px 16px;
  background-color: inherit;
  font-family: inherit;
  margin: 0;
}

.navbar a:hover, .dropdown:hover .dropbtn {
  background-color: #9698a8;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #D9DCD6;
  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: center;
}

.dropdown-content a:hover {
  background-color: #9698a8;
}
.dropdown:hover .dropdown-content {
  display: block;

/*end of navbar section*/