/*
   New Perspectives on HTML and CSS
   Tutorial 9
   Case Problem 1

   Kelsey's Diner Style Sheet

   Author: Phoebe Palenik
   Date:  11/17/25

   Filename:         kdstyles.css
   Supporting Files: 

*/

img {
   border-width: 0px;
}

body.bg {
  background-image: url('tan.jpg');
  background-repeat: repeat;
}

.center {
  text-align: center;
}

.green {
  color: green;
}

.sans {
  font-family: sans-serif;
}

.strong {
  font-weight: bold;
}

