/* 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." */

body {
  background-color: white;
  color: #006400;
  font-family: Verdana;
}

h1 {
 text-align: center; 
}


p{text-align: center;
}



ul {
 list-style-type: none;
 margin: 0;
 padding: 0;
}

li {
 display: inline;
 margin-right: 20px;
}


center-text {
text-align: center;
}


center {
display: block;
margin-left: auto;
margin-right: auto;
width: 25%;
}

a {
 text-decoration: none;
 color: #006400;
 font-weight: bold;
}

nav {
  display: flex;
justify-content: center;
    border: #D7F7DA 2px dotted;
}

#container {
border: #006400 1px; 
display: block;
margin-right:auto;

}

#one{
 border:#006400 2px solid;
 
}

footer {
    font-size: 8pt;
    text-align: center;
}