
body{
font-family: 'Open Sans Condensed', sans-serif;
}

h1 {font-size:320%;}

h2 {color:#9a9b9c;
    font-size:170%;}
   a {
  color: Black;
}

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: #33300;
}
li {
  float: left;
}

li a {
  display: block;
  color: black;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}


p {
  font-size: 24px;
}


.intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  
}

.intro > div {
  text-align: center;
  width:600px;
}


	.flex-container {
	display: -webkit-flex;
	display: flex;

	-webkit-justify-content: center;
	justify-content: center; /* center horizontally */

	-webkit-align-items: center; /* center vertically */
	align-items: center;

	width: 80%;

	flex-direction:row;
	flex-wrap:nowrap; 


	margin:150px auto 30px auto; /* first number is distance from top of page */
}

.flexed-item {

	margin:223px 51px;

}
  
  
  
  .flex-container2 {
	display: -webkit-flex;
	display: flex;

	-webkit-justify-content: center;
	justify-content: center; /* center horizontally */

	-webkit-align-items: center; /* center vertically */
	align-items: center;

	width: 80%;

	flex-direction:row;
	flex-wrap:nowrap; 


	margin:150px auto 30px auto; /* first number is distance from top of page */
}

.flexed-item2 {

	margin:50px 51px;



/* unvisited link */
a:link {
  color: black;
}

/* visited link */
a:visited {
  color: red;
}

/* mouse over link */
a:hover {
  color: green;
}

/* selected link */
a:active {
  color: blue;
}

.centered {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  
}

.centered > div {
  text-align: center;
  width:500px;
}

#myBtn {
  display: none; /* Hidden by default */
  position: fixed; /* Fixed/sticky position */
  bottom: 20px; /* Place the button at the bottom of the page */
  right: 30px; /* Place the button 30px from the right */
  z-index: 99; /* Make sure it does not overlap */
  border: none; /* Remove borders */
  outline: none; /* Remove outline */
  background-color: red; /* Set a background color */
  color: white; /* Text color */
  cursor: pointer; /* Add a mouse pointer on hover */
  padding: 15px; /* Some padding */
  border-radius: 10px; /* Rounded corners */
  font-size: 18px; /* Increase font size */
}

#myBtn:hover {
  background-color: #555; /* Add a dark-grey background on hover */
}


