@media screen {
   .printer-only {
     display: none;
   }
 }

 @media print {
   .screen-only {
     display: none;
   }
 }

body {
  font-family: Verdana, Arial;
  font-size: 16px;
  color: blue;
  background-color: #FFEBBF;
}

#header , #menu , #menu li , #content , #footer , #nameAndTitle {
  // border: 3px solid #ff9900;
  // background-color: grey;
}

#header , #footer {
  margin-top: 40px;
  margin-bottom: 40px;
}

@media screen {
  header {
    text-align: center;
  }
  
  #header {
    background: url(../images/header.jpg) no-repeat;
    height: 188px;
    width: 960px;
  }
 }

#nameAndTitle {
  text-align: center;
  color: lightgreen;
}

#title {
  font-size: 18px;
}

#name {
  font-size: 30px;
}

#menu {
  padding-top: 30px;
  padding-bottom: 30px;
}

#menu ul {
  list-style-type: none;
}

#menu li {
  font-size: 20px;
  text-align: center;
  margin: 5px;
}

#menu li :link , #menu li :visited , #menu li :link:hover , #menu li :visited:hover {
  padding: 6px;
}

@media screen {
  #footer {
    background: url(../images/footer.jpg) no-repeat;
    height: 188px;
    width: 960px;
  }
}

:link , :visited {
  color: darkgreen;
  /* text-decoration: none; */
  /* text-decoration: line-through; */
  /* text-decoration: overline underline; */
  text-decoration: underline;
}

:link:hover , :visited:hover {
  color: blue;
  background-color: yellow;  
  /* text-decoration: none; */
  /* text-decoration: overline underline; */
  text-decoration: underline;
}

.warning {
  font-size: 32px;
  text-align: center;
  background-color: lightgreen;
  border-top: solid;
  border-bottom: solid;
  border-radius: 30px;
}