@import url('https://fonts.googleapis.com/css2?family=Monda:wght@400..700&family=Short+Stack&display=swap');

/*******************     Navigation  **********************/

a button {
	border-radius: 15px;
	padding: 5px 20px;
	background-color: #003566;
	font-family: "Monda";
}

a button:hover {
	cursor: pointer;
}

.logo {
	width: 18vh;
}

.nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1% 2%;
	font-family: "Monda";
	background-color: #f5bb00;
}

.nav li {
	align-content: flex-end;
	list-style-type: none;
	display: inline-block;
	padding-left: 20px;
	color: #1d2d44;
}

.nav a{
	text-decoration: none;
	color: #1d2d44;
}

.pbutton {
	border-radius: 15px;
	padding: 5px 20px;
	background-color: #003566;
	color: white;
}

.pbutton:active {
	background-color: #1a759f;
	box-shadow: 0 5px #666;
	transform: translateY(4px);
}

.pretty {
	color: #94d2bd;
	font-family: "Short Stack";
}

@media (max-width: 540px) {
	.nav {
		flex-direction: column;
	}
}

/**************************************** END NAVIGATION **/
 .dropbtn {
  background-color: #04AA6D;
  color: white;
  padding: 16px;
  font-size: 16px;
  border: none;
  border-radius: 15px;
  border: solid 2px white;
}

.dropdown {
  position: relative;
  display: inline-block;
  margin-bottom: 2%;
  margin-left: 20%;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  color: #04AA6D;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {
  background-color: #ddd;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown:hover .dropbtn {
  background-color: #3e8e41;
  cursor: pointer;
}

/******************************************************* DROP DOWN STUFF **************************************/

body{
	background-color: #ff4e00;
	margin: 0;
}

.article {
	display: flex;
	margin: 2% 0 5% 2%;
}

.left {
	padding-right: 5%;
}

.right {
	margin-left: 2%;
}

.suppic {
	width: 30vh;
	border: solid 2px white;
	border-radius: 15px;
}

