 body {

  background-color: lightgrey;
  font-size: large;
  font-family: Georgia, 'Times New Roman', Times, serif;
  margin: 0;
  padding: 0;
}

h1 {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  text-align: center;
}
.menubar ul { 
display: flex;
-webkit-justify-content: center;
    justify-content: center;
     -webkit-align-items: center;
     align-items: center;
background-color: lightgrey;
     border-radius: 10px;
     padding: 0px;
     text-align: center;
     margin: 20px auto;
    width: fit-content;
   height: fit-content;
     
     
     
     }


     .menubar ul a {
        color: black;
         padding: 14px 16px;
          text-decoration: none;
         
        
         }
.menubar ul a:hover {
background-color: white;
color: blueviolet;
}
 ul li {
   display: flex;
  text-decoration: none;
 }

.tileGrid {
    display: grid;
  grid-template-columns: repeat(auto-fill, minmax(325px, 1fr));
  gap: 20px;
}

  .dayInTheLife {
  gap: 20px;
 background-color: white;
 padding: 20px;
 margin: 2%;
 border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  font-size: 1.2em;

  }
  
 
a {
  text-decoration: none;
}
img {
  margin-top: 5px;
  display: block;
  border-radius: 10px;
  width: 100%;
}
cite {
    font-size: small;
    color: black;
}
.site-footer {
  background-color: #222;
  color: #fff;
  text-align: center;
  padding: 20px;
  font-size: 14px;
}
.site-footer a {
  color: #ffcc00; 
  text-decoration: none;
}
.site-footer a:hover {
  text-decoration: underline;
}


