/* Add a black background color to the top navigation */
.topnav {
  background-color: #004537;
  overflow: hidden;
}

/* Style the links inside the navigation bar */
.topnav a {
  float: left;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;

}

/* Change the color of links on hover */
.topnav a:hover {
  background-color: #99d2c7;
  color: black;
}

/* Add a color to the active/current link */
.topnav a.active {
  background-color: #008a6e;
  color: white;
}


* {
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background-image: url(images/gradient.png);
background-attachment: fixed;
  background-size: 100% 100%;
	background-color: #afd6ce;
		line-height: 1.5;
  max-width: 920px;
  margin: auto;

}

/* Style the links inside the body */
body a {
  color: black;
  text-decoration: none;
	font-weight: bold;

}

/* Change the color of links on hover */
body a:hover {

  color: #008a6e;
	font-weight: bold;
	text-decoration: underline;
}

/* Add a color to the active/current link */
body a.active {
  color: #008a6e;
	font-weight: bold;
}

p {
	width: 100%;
	
}

h {
	
	width: 100%;
}

/* Style the header */
.header {
  background-color: #f1f1f1;
  padding: 10px;
  text-align: center;
  font-size: 24px;
}


/* Container for flexboxes */
.row {

  display: flex;
  flex-direction: row;




}

/* Create three equal columns that sits next to each other */
.column {

  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 10px;





	

}

/* Style the footer */
.footer {
  background-color: #f1f1f1;
  padding: 10px;
  text-align: center;
}

/* Responsive layout - makes the three columns stack on top of each other instead of next to each other */
@media (max-width: 600px) {
  .row {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}

/* Style the footer */
.footer {
  background-color: #99d2c7;
  padding: 10px;
  text-align: center;
}

/* Responsive layout - makes the three columns stack on top of each other instead of next to each other */
@media (max-width: 600px) {
  .column {
    width: 100%;
  }
}
