@charset "utf-8";

/*
    Author: Gracie Boyette
    Date: 10/6/2025
*/

/* All Heading text*/

h1{
    text-align: center;
}

/* Body text, */
body{
    background-color: rgb(114, 190, 140);
    color: Black;
    margin-bottom: 10px;
    
}

nav{
    background-color: gray;
    color:Black;
    text-size-adjust: 100px;
}

ul {
  display: flex;
  list-style-type: none; 
  padding: 15px; 
  margin: 15px; 
  text-decoration: none;
  justify-content: space-between;
}

li a {
    color:black;
    text-decoration: none;
}

footer{
    background-color: black;
    color:white;
    padding-top: 7px;
    padding-bottom: 7px;
}