body {
    background-color:#ffffe6;   /* step 4.1 */
    color: #006600;                         /* step 4.2 */
    font-family:Verdana;          /* step 4.3 */
}

nav{
    display: flex;
    flex-direction: row;
    border-color:#0066ff;
    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 auto;
    grid-template-rows:repeat(2, 80px);
    padding: 5px;
    padding-top: 1%;
    justify-items: start;
    background-color: #b3ffcc;
    background-image: url(images/yagi_200px.png);
    background-repeat:no-repeat;
    background-position:45.5%;
    border-color:#e72d32;
    border-width:8px;
    border-style:double;
    align-items:baseline;
}

footer {
  text-align: right;
  padding: 1px;
  /* background-color: rgb(110, 191, 223); */
  color: rgb(233, 27, 178);
}

.boxie_3  {
      border-color:black;
      border-width:3px;
      border-style:solid;
      background-color:rgb(131, 226, 227);
      color:black;
      padding:5px;
      padding-left:6px;               
      margin-right:60%;
      margin-left: 5%;
}


header{
    text-align: center;
    text-decoration: blue;
    color:#0066ff;
}





div.gallery {
  border: 1px solid #ccc;
  border-radius: 8px;
}

div.gallery:hover {
  border: 1px solid #777;
}

div.gallery img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

div.desc {
  padding: 15px;
  text-align: center;
}

* {
  box-sizing: border-box;
}

.responsive {
  padding: 0 6px;
  float: left;
  width: 24.99999%;
}

@media only screen and (max-width: 700px) {
  .responsive {
    width: 49.99999%;
    margin: 6px 0;
  }
}

@media only screen and (max-width: 500px) {
  .responsive {
    width: 100%;
  }
}

.clearfix:after {
  content: "";
  display: table;
  clear: both;
}