p,ul {
  color: cornsilk;
    background-color: coral;
}
body {
  background-color: cornsilk;
}
.wrapper {
  display: grid;
  }

  .wrapper {
    display: grid;
    grid-template-columns: 200px 200px 200px;
  }

  body {
    width: 95%;
    max-width: 900px;
    margin: 2em auto;
    font:
      0.9em/1.2 Arial,
      Helvetica,
      sans-serif;
  }

  .wrapper > nav {
    border-radius: 5px;
    padding: 10px;
    background-color: rgb(207 232 220);
    border: 2px solid rgb(79 185 227);
  }
  a:link {
       text-decoration: none;
 }

 a:visited {
       text-decoration: none;
 }

 a:hover {
       text-decoration: none;
 }

 a:active {
       text-decoration: none;
 }
 div {
   clear: right;
 }
 .row {
  display: flex;
  flex-wrap: wrap;
  padding: 0 4px;
}

/* Create four equal columns that sits next to each other */
.column {
  flex: 25%;
  max-width: 25%;
  padding: 0 4px;
}

.column img {
  margin-top: 8px;
  vertical-align: middle;
  width: 100%;
}

/* Responsive layout - makes a two column-layout instead of four columns */
@media screen and (max-width: 800px) {
  .column {
    flex: 50%;
    max-width: 50%;
  }
}

/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .column {
    flex: 100%;
    max-width: 100%;
  }
}
