/*
   New Perspectives on HTML and CSS
   Tutorial 9
   Case Problem 1

   Kelsey's Diner Style Sheet

   Author:  Mauricio Rivas Briceno  
   Date:    11/14/2025  

   Filename:         kdstyles.css
   Supporting Files: 

*/

/* Page background (replaces body background="tan.jpg") */
body {
  background: #fffff url("tan.jpg") repeat;
  font-family: serif;
}

/* Remove default borders from images (completed original rule) */
img {
  boder-width: 0;
  border-style: none;
}

/* Centered headings (replaces align="center") */
h1,
h5 {
  text-align: center;
}

/* Main page title color (replaces <font color="green"> around the h1) */
h1 {
  color: green;
}

/* Kelsey's green" for dish name (replaces <font face="sans-serif" color="green"> inside <dt> */
dt {
  font-family: sans-serif;
  color: green;
  font-weight: bold;
}

/* Add a bit of vertical space beteen items */
dd {
  margin-bottom: 0.6em;
}

/* Extra spacing around the top image + caption */
.menu.image {
  margin-top: 1em;
  margin-bottom: 1em;
}

/*  Spacing for the hours line */
.hours {
   margin-top: 0.2em;
   margin-bottom: 0.8em;
}


 



