/** Nav Bar **/
.title{

align-items: center;

}
nav {
    display: flex;
   background-color: RGB(210, 228, 250);
   font-size: 19px;
 }
 
 .nav-list {
    list-style-type: none;
   display: flex;
   margin-right: 2rem;
   flex-wrap: wrap;
   flex-grow: 2;
   justify-content: space-between;
   align-items: column;
   }
 
 
   /** Nav bar changes color when hovered over **/
 
   li > a:hover {
   color: green;
   text-decoration: underline;
 }
 
 li > a{
   text-decoration: none;
   color: black;
    font-family: 'Roboto', sans-serif;
 }
 
 li > a:visited {
   text-decoration:black;
   color: black;
 }
 /* h1, h2, h3 tags */
h1 {

    text-align:center;
    font-size: 50px;
}


h2 {
    text-align:center;
}

h3 {

    text-align:center;
  }
    
p {
    text-align:center;
    font-size: 21px;
    max-width: 75ch;
    margin-left: auto;
    margin-right: auto;
}

body{
    background-color:beige;
}

img {
width:100%;
height:auto;
}

.list {
    align-items: center;
    list-style-type: none;
    
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}



/* footer */
footer {
    bottom: 2px;
    text-align:center;
    width: 100%;
}