/* 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: #7fb985;
  color: black;
 font-family: "Nunito", sans-serif;
  font-style: normal;
}




h1 {
  text-align: center;
  font-family: "WDXL Lubrifont JP N", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 75px; 
}



.column {
  float: left;
  width: 10%;
 
 
 
}

.row::after {
  content: "";
  clear: both;
  display: table;


}


 .bordered {
    border: 3px;
    padding: 5px;
    border-color: #2a452b;
    border-style: dashed;
    
}

p {
  vertical-align: baseline
}


a:link, a:visited {
  background-color:#2a452b;
  color: #94b696;
  padding: 15px 25px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
}

a:hover, a:active {
  background-color: #2a452b;
}

hr {
  background-color: #659267;
  border-style: dotted;
  border: 3px;
  padding: 3px;
  border-radius: 2px;
  margin: 10px 30px;
  
}

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: block; 
  margin-left: auto; 
  margin-right: auto;
}

li {
  display: inline;
  margin-left: auto;
  margin-right: auto;
}


h2 {
  
  
  font-family: "WDXL Lubrifont JP N", sans-serif;
  color: #2a452b;
  
}


.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 40%;

