
body, html {
    height: 100%;
    margin: 0;
    font: 400 15px/1.8 "Lato", sans-serif;
    color: #777;
    background-color: black;
  }

  .wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 10px;
    grid-template-rows: 20% 40% auto;
    position: relative;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url("assets/background.png");
    height: 100%;
  }

  .one {
    margin: 10px;
    grid-column: 1 ;
    grid-row: 1;
    text-align: left;
  }

  .one>img {
    min-width: 80px;
      max-width: 33%;
  }
  
  .two {
    margin: 10px;
    grid-column: 2;
    grid-row: 1;
    text-align: right;
  }
  .two>img {
    min-width: 100px;
      max-width: 33%;
  }

  .three {
    margin: 10px;
    grid-column: 1/3;
    grid-row: 2;
  }

  .three>img {
    min-width: 150px;
    max-width: 33%;
  }

  .four {
    grid-column: 1;
    grid-row: 3;
  }
  .four>a {
      color: white;
      position: absolute;
      padding: 1px 4px 1px 4px;
      right: 10px;
      bottom: 10px;
      font-weight: bold;
      font-size: 10px;
      text-decoration: none;
  }


