* {
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
}

/* Style the top navigation bar */
.topnav {
  overflow: hidden;
  background-color: #333;
}

/* Style the topnav links */
.topnav a {
  float: left;
  display: block;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

/* Change color on hover */
.topnav a:hover {
  background-color: #ddd;
  color: black;
}

/* Anita's: Style the header using the above topnav  */
.container {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #333;
  /* padding-left: 300px;  shifts everithing in the header to the right */
}

/* Style the content */
.content {
  background-color: #ddd;
  padding-bottom: 20px
   /* padding: 10px 620px 10px 200px; padding is top right bottom left (makes left margin) */
   /* height: 400px; Should be removed. Only for demonstration */
}

/* Style the paragraph: max-widtg of text that adjusts for small window */
p {
  max-width: 800px;
  margin: auto;
  padding: 10px;
  text-align: justify;
  line-height: 1.6;
}

h2 {
  max-width: 800px;
  margin: auto;
  padding: 40px 10px 20px 10px;
  text-align: justify;
}

/* Style the footer */
.footer {
  background-color: #f1f1f1;

}

img {
  max-width: 100%;
  max-height:100%;
  float: left;
}

.text {
  padding-left: 20px;
  color: #f2f2f2;
}

/* dashed frame around text */
.dashedframe {
  border: 2px dotted gray;
  border-radius: 5px;
  padding:2px;
  float: none;
  clear: both;
  margin-bottom:12px;
  max-width:400px;
  text-align:justify;
}

/* color of linked text in the content */
.content a:link {
  color: #1565c0;
  background-color: transparent;
  text-decoration: none;
}
.content a:visited {
  color: #1565c0;
  background-color: transparent;
  text-decoration: none;
}
.content a:hover {
  color: #1565c0;
  background-color: transparent;
  text-decoration: underline;
}
.content a:active {
  color: lab(40.88% 33.41 -74.4);
  background-color: transparent;
  text-decoration: underline;
}

/* color of linked text in the footer */
.footer a:link {
  color: #333;
  background-color: transparent;
  text-decoration: none;
}
.footer a:visited {
  color: #333;
  background-color: transparent;
  text-decoration: none;
}
.footer a:hover {
  color: #333;
  background-color: transparent;
  text-decoration: none;
}
.footer a:active {
  color: lab(40.88% 33.41 -74.4);
  background-color: transparent;
  text-decoration: none;
}

/* Style the table */
table {
  max-width: 1000px;
  margin: auto;
  padding: 0px;
  line-height: 1.6;
  text-align: justify;
}       

th, td {
  padding: 0px 0px 0px 10px; /* padding is top right bottom left (makes left margin) */
  text-align: left;
 }