/* CSS Document */

p {
  font-family: "Merriweather", serif;
	font-size: 18px;
  font-optical-sizing: auto;
  font-weight: 24px;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
	padding: 10px;
}
.merriweather-head {
  font-family: "Merriweather", serif;
	font-size: 30px;
  font-optical-sizing: auto;
  font-weight: 14px;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
	color: teal;
	padding: 10px;
}
.navbar {
	right: 0px;
	top: 0px;
    background-color: #0f3d46;
    font-family: Arial, sans-serif;
	position: fixed;
	z-index: 10;
	border-bottom-left-radius: 25px;
}

.nav-menu {
    list-style: none;
    display: flex;
    justify-content: center;
    padding: 0;
    margin: 0;
}

/* TOP LEVEL ITEMS */

.nav-menu li {
	z-index: 10;
    position: relative;
}

.nav-menu a {
    display: block;
    padding: 15px 25px;
    color: white;
    text-decoration: none;
    font-size: 16px;
}

.nav-menu a:hover {
    background-color: #155f6b;
	border-bottom-left-radius: 25px;
}

/* DROPDOWN MENU */

.dropdown-menu {
	z-index: 10;
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    list-style: none;
    padding: 0;
    box-shadow: 0px 4px 10px rgba(0,0,0,0.15);
}

/* DROPDOWN ITEMS */

.dropdown-menu li a {
    color: #333;
    padding: 12px 18px;
}

.dropdown-menu li a:hover {
    background-color: #f2f2f2;
}

/* SHOW DROPDOWN */

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

/* TAGS */

body {
	background-color: black;
	margin: 0px;
	padding: 10px;
	background-image: url("../Images/brain_background.png");
	background-repeat: repeat-y;
	background-size: cover;
}

/* SITE CONTENT */

.welcome_banner {
	margin: 0 auto;
	width: 70%;
	background-color: rgba(255, 255, 255, 0.8);
	padding: 20px; 
}

#brain_image {
	float: left;
	position: relative;
	border-style: solid;
	border: 2px;
	border-color: black;
	border-top-left-radius: 25px;
	border-bottom-right-radius: 25px;
	box-shadow: 5px 5px 10px #000000;
	margin: 20px;
}

#logo {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 400px;
}
#logo img {
	height: 400px;
}

.examples {
	margin: 0 auto;
	width: 70%;
	background-color: rgba(255, 255, 255, 0.8);
	padding: 20px;
}