body {
    background-color:#f8f9c9;   /* step 4.1 */
    color: #3004f3;                         /* step 4.2 */
    font-family:Verdana;          /* step 4.3 */
}

nav{
    display: flex;
    flex-direction: row;
    background-color:lightyellow ;
    border-color:#9e2804;
    border-width:8px;
    border-style:double;
    margin-top: 6px;
    justify-content: space-evenly;
        
}
nav div {
  margin: 10px;
  padding: 2px;
  font-family: 'Lucida Sans', 'Lucida Sans Regular';
  font-size: 20px;
  align-items: center; 
}

.banner_grid {
  display: grid;
  grid-template-columns: 350px auto auto;
  grid-template-rows:repeat(2, 80px);
  padding: 5px;
  padding-top: 1%;
  justify-items:end;
  background-color: #e7e569;
  background-image: url(images/yagi_200px.png);
  background-repeat:no-repeat;
  background-position:6S.5%;
  border-color:#e72d32;
  border-width:8px;
  border-style:double;
  align-items:baseline;
}

banner div {
  margin: 30px;
  padding: 2px;
  font-family: 'Lucida Sans', 'Lucida Sans Regular';
  font-size: 30px;
  align-items: center; 
}

.footer {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: #056ef8;
  color: white;
  text-align: center;
}

.boxie_3  {
      border-color:black;
      border-width:3px;
      border-style:solid;
      background-color:rgb(238, 235, 73);
      color:black;
      padding:5px;
      padding-left:6px;               
      margin-right:60%;
      margin-left: 5%;
}


header{
    text-align: center;
    text-decoration: rgb(70, 240, 107);
    color:#0066ff;
}

tr:nth-child(even) {
  background-color: #D6EEEE;
}

tr:hover {background-color: #D6EEEE;}
