/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

nav{
  font-family: Tahoma;
  z-index: 99;
  background-color: #2b4075;
  padding: 6px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  outline: 1px solid white;
}

.navlink{
  font-family: Tahoma;
  background-color: white;
  display: block;
  width: 100px;
  padding: 5px;
  margin: 8px 5px 8px;
  outline: 1px solid white;
}

a:link{
  color:#2606d7;
}

a:visited{
  color:#ff2423;
}

body {
	line-height: 1;
	background-color: #2b4075;
	background-image: url(background1.png);
	text-align: center;
}

h1{
	font-size: 220%;
	font-family: "outfitrepeateer";
	line-height: 125%;
	padding: 15px;
	padding-top: 15px;
	margin-left: 10%;
	margin-right: 10%;
	background-color: #2b4075;
	outline: 1px dashed white;
	color: white;
}

h2{
	font-size: 110%;
	font-family: "outfitrepeateer";
	line-height: 125%;
	padding: 10px;
	padding-top: 10px;
	margin-left: 45%;
	margin-right: 45%;
	background-color: #820e0f;
	outline: 1px dashed white;
	color: white;
}

p{
	font-size: 110%;
	font-family: Tahoma;
	line-height: 125%;
	padding: 15px;
	padding-top: 15px;
	margin-left: 10%;
	margin-right: 10%;
	background-color: #2b4075;
	outline: 1px dashed white;
	color: white;
}

UL{
	font-size: 110%;
	font-family: Verdana;
	line-height: 125%;
	padding-right: 50px;
	padding-left: 50px;
	background-color: pink;
	outline: 2px solid red;
}

.myClass{
	text-align: left;
	outline: 2px purple dashed;
}