* {
    margin: 0;
    padding: 0;
} */

body{
    background-color: white;
    font-family: Verdana, Arial, Helvetica, sans-serif;
    display: auto;
  }

.flexbox{
  display: auto;
}

.grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    grid-template-areas:
    "a b"
    "c d ";
    margin-top: 150px;
    margin-bottom: 150px;
}

.item1 {
    grid-area: a;
    justify-self: end;
  }
  .item2 {
    grid-area: b;
  }
  .item3 {
    grid-area: c;
    justify-self: end;
  }
  .item4 {
    grid-area: d;
  }

  header a{
    position: center;
}
  

footer a{
    text-align:center;
    margin-bottom: 40px;
    width:100%;
    display:inline-block;
    vertical-align:top;
    font-size:13px;
    font-family: Verdana, Arial, Helvetica, sans-serif;
    color: #FF4700; text-decoration: none;
    position: center;
}

@media screen and (max-width : 610px) {
  .flexbox {
      flex-direction: column;
      align-items: center;
  }
}