body {
	background-color: rgb(235, 235, 235);
	color: darkblue;
	font-family: courier;

}

h1 {
	color: black;
	font-family: "Merienda", cursive;
    font-optical-sizing: auto;
    font-weight: <weight>;
    font-style: normal;   
}

h2 {
	color: rgb(90, 90, 90);
	font-family: "Alan Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: <weight>;
    font-style: normal;
}

a {
	text-decoration: underline;
	color: white;
	font-family: "Roboto Slab", serif;
    font-optical-sizing: auto;
    font-weight: <weight>;
    font-style: normal;
}

a:hover {
	color: darkgrey;
}

p {
	font-family: "Roboto Slab", serif;
    font-optical-sizing: auto;
    font-weight: <weight>;
    font-style: normal;
    color: 26408B;
}

.img-circle { 
  border-radius: 50%;
}

.img-bordered {
  border: 2px lightgray; 
}

#leader {
  box-shadow: 0px 4px 4px rgba(0,0,0,0.9);
}

.text-center {
	text-align: center;
}

.card-white {
	background-color: white;
	padding: 40px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	border-radius: 4px;
	margin: 20px 200px;
	text-align: center;
}

.container {
	width: 700px;
	margin: 40px auto;
}

@media (max-width: 760px) {
	.container {
		width: 600px;
	}
}

@media (max-width: 500px) {
	.container {
		width: 400px;
	}
}

.btn-purple {
	background-color: darkblue;
	padding: 10px 20px;
	border-radius: 4px;
	color: white;
}

.btn-purple:hover {
	color: darkgrey;
}

.list-inline {
	list-style: none;
	padding-left: 0px;
}

.list-inline li {
	display: inline;
	padding: 10px;
}

.list-inline i {
	font-size: 40px;
    color: rgb(220, 220, 220);
}

.list-inline i:hover {
    color: darkblue;
}

#introduction p {
    margin-bottom: 40px;
}

.sidebar {
  position: fixed;
  width: 150px;
  left: 0;
  top: 0;
  bottom: 0;
  background-color: darkblue;
  border-right: dotted;
  text-align: center;
  font-size: 24px;
}

.sidebar ul {
  list-style: none;
	padding-left: 0px;
}

.page-content {
  margin-left: 100px;
}