/*
   New Perspectives on HTML and CSS
   Tutorial 9
   Case Problem 1

   Kelsey's Diner Style Sheet

   Author:    Tierra Palmer
   Date:      April 10, 2025

   Filename:         kdstyles.css
   Supporting Files: 

*/

img {
  border-width: 0px;
}

body {
  background-image: url("tan.jpg");
  margin: 0;
  padding: 0;
}

h1 {
  color: green;
  font-family: sans-serif;
  text-align: center;
}

h5 {
  font-weight: normal;
  text-align: center;
}

dt {
  color: green;
  font-family: sans-serif;
  font-weight: bold;
}

hr {
  border: 1px solid #ccc;
  width: 80%;
  margin: 20px auto;
}

dl {
  width: 80%;
  margin: 0 auto;
}

dt {
  margin-top: 15px;
}

p {
  text-align: left;
}
