* {
	font-family: sans-serif;
}

/*Selectors
html tags, classes, ids
Pseudo classes
:hover, :focus, first-of-type
What can we style? Positioning, colours, borders, thickness, fonts, sizes*/


header {
	background-color: #211A1D;
	color: #ffffff;
	width: 100%;
	padding: 20px;
}

nav {
	display: inline-block;
	width: 100%;
}

header ul {
	margin: 20px 0 0 0;
	padding: 0;
}

header ul li {
	display: inline-block;
	margin-right: 10px;
}

section {
	padding: 5%;
	background-color: #F8F0FB;
}

img {
	border: 5px solid #8075FF;
}

h1, h2, h3, h4, h5 {
	/*Purple*/
	color: #6320EE;
	margin-bottom: 1em;
}

h1 {
	font-size: 250%;
}

h2 {
	font-size: 175%;
}

h3 {
	font-size: 150%;
}

button {
	display: inline-block;
	border-radius: 3px;
	cursor: pointer;
	padding: 10px 20px;
	box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.2);
	background-color: #372772;
	border: 2px solid black;
	color: #fff;
}

footer {
	background-color: #211A1D;
	color: #ffffff;
	width: 100%;
	padding: 20px;
	display: flex;
	justify-content: space-between;
}

.introduction {

}

#badge {
	height: 120px;
	width: 120px;
	background-color: #bbb;
	border-radius: 50%;
	display: inline-block;
	position: fixed;
	bottom: 20px;
	right: 20px;

	display: flex;
	justify-content: center;
	align-content: center;
	flex-direction: column;
}

#badge:hover {
	background-color: yellow;
}

#badge p {
	text-align: center;
	font-size: 125%;
}

.image-container img {
	vertical-align: top;
	border: 5px solid #747C92;
}

.image-container img:first-of-type {
	vertical-align: bottom;
}

.tigers {
	background-color: #0B3C49;
	color: #F0E100;
}

.giraffe {
	background-color: #465775;
	color: #56E39F;
}

.giraffe h2 {
	color: #EF6F6C;
}

.card {
	display: inline-block;
	background-color: white;
	padding: 20px;
	margin: 10px;
	width: 30%;
	border: 1px solid black;
	border-radius: 10px;
}

.card h4 {
	margin-bottom: 1em;
}

.card a {
	text-decoration: underline;
	font-weight: bold;
}

.card time {
	opacity: 0.5;
	display: inline-block;
	margin-bottom: 10px;
}



/*Education*/

.education {
	height: 500px;
	background-image: url('https://source.unsplash.com/1200x900/?tiger');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	padding: 100px 5%;
}

.education-container {
	background-color: rgba(255,255,255,0.75);
	padding: 50px;
	max-width: 400px;
}

.education-container h3, .education-container p {
	margin-bottom: 1em;
}

/*Membership*/

.membership {
	text-align: center;
	background-color: #FFFFFC;
}

.membership h2 {
	color: #FF3F00;
}

.membership strong {
	color: #FF7F11;
}

/*Programs*/

.programs .card {
	display: block;
}
