* {
  margin: 0px 0px 0px 0px;
  box-sizing: border-box;
}
body {
  font-family: "Lucida Sans", sans-serif;
  margin: 0
}
h1           { color: #000066 }
h2.midalign  { color: #000000; vertical-align:middle }
h2           { color: #000066 }
h3           { color: #000066 }
h4           { color: #000066 }

ul           { margin-left: 15; padding-left: 15; }
ul.left           { margin-left: 15; }

p.red { font-color: red;
color:red}

#all A:link {
  COLOR: #B80300;
  text-decoration: none
}
#all A:visited {
  COLOR: #990099 ;
  text-decoration: none
}
#all A:hover {
  COLOR: #000066;
  cursor:hand;
  text-decoration: none
}
#all A:active {
  COLOR: #FF0000 ; 
  text-decoration: none
}

#cat A:link {
  COLOR: #000080;
  text-decoration: none
}
#cat A:visited {
  COLOR: #660066 ;
  text-decoration: none
}
#cat A:hover {
  COLOR: #ff0000;
  text-decoration: none
}
#cat A:active {
  COLOR: #000080 ; 
  text-decoration: none
}


.overwhite  {color:white}
.over1      {color:white;background-color:black}
.overblack  {color:black}

.overblue	{background-color: blue}
.overbeighe	{background-color: beige}

ul.disc 
{
list-style-type: disc
}

ul.circle 
{
list-style-type: circle
}

ul.square 
{
list-style-type: square
}

ul.pic
{
list-style-image: url('images/arrow.gif')
}

div.dinner {
  background-color: lightgrey;
  padding: 20px;
}


.grid-container {
  display: grid;
    grid-template-columns: 200px 200px;
/*    grid-template-areas:
    'header header'
    'left right'
    'left right'
    'footer footer'; */
    gap: 10px;
    justify-content: center;
  background-color: white;
  padding: 10px;
}

.grid-container > div {
  padding: 10px;
  font-size: 16px;
    text-align: center;
}

.item1 {
  grid-area: header;
  background-color: white;
  text-align: center;
  color: #ffffff;
}

.item1 > h1 {
  font-size: 40px;
}

.item2 {
  grid-area: menu;
  }
  
.item2 ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.item2 li {
  padding: 8px;
  margin-bottom: 7px;
  background-color: #33b5e5;
  color: #ffffff;
}

.item2 li:hover {
  background-color: #0099cc;
}
  
.item3 {
  grid-area: left;
  text-align: center;
}

.item3 > h1 {
  font-size: 30px;
  margin-bottom: 7px;
}

.item3 > p {
  margin-bottom: 7px;
}

.item4 {
  grid-area: right;
  text-align: center;
}

.item4 > h1 {
  font-size: 30px;
  margin-bottom: 7px;
}

.item4 > p {
  margin-bottom: 7px;
}


.item5 {
  grid-area: footer;
  background-color: #0099cc;
  color: #ffffff;
  text-align: center;
}

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
  div.dinner {font-size: 15px}
.grid-container {grid-template-columns: 100px 200px; background-color:white}
}
/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
  div.dinner {font-size: 25px}
.grid-container {grid-template-columns: 200px 200px; background-color:white}
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
  div.dinner {font-size: 25px}
.grid-container {grid-template-columns: 200px 300px; background-color:white}
} 

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
  div.dinner {font-size: 25px}
.grid-container {grid-template-columns: 200px 300px; background-color:white}
} 

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
  div.dinner {font-size: 25px}
    .grid-container {grid-template-columns: 200px 300px; background-color: white}

}