* {
  margin: 0;
  padding: 0;
  font-family: 'AnkaCoderRegular', Arial;
  color: black;
}

.avatar, .cursor, .attribution {
  display: none;
}

.grid-container {
  display: grid;
  width: 90vw;
  padding: 5vw;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(4, 1fr) 2fr 1fr;
  align-items: center;
}

.grid-item {
  list-style-type: none;
  padding: 10px;
  justify-self: stretch;
  text-align: center;
}

.address {
  justify-self: left;
  grid-column: span 4;
}

.platform {
  justify-self: right;
  grid-column: span 2;	
}

.link {
  grid-column: span 2;
  grid-row: 5;
}

.header {
  grid-column: span 6;
  border-bottom: 1px solid black;
}

@media only screen and (min-width: 720px) {

  @keyframes blink {
    0%	{color: black;}
    50%	{color: transparent;}
  }

  body {
    background-color: #353D2F;
  }

  .circle {
    position: absolute;
    left: -140px;
    z-index: -1;
    background-color: #679436;
    border-radius: 50%;
    height: 700px;
    width: 700px;
    box-shadow: 0 0 25px #000000;
  }

  .circle-content {
    top: 50px;
    position: relative;
  }

  .avatar {
    display: inherit;
    transform: translate(62px);
    padding-left: 20px;
    padding-right: 20px;
    border-bottom: 1px solid black;
  }

  .avatar:hover + .attribution a {
    color: #000000;
  }

  .attribution a:hover {
    color: #000000;
  }

  .attribution {
    display: block;
    height: 25px;
    width: 420px;
    text-align: center;
  }

  .attribution > a {
    font-size: 80%;
    color: #679436;
  }

  a {
    color: black;
  }

  .centering-wrapper {
    position: absolute;
    top: 40%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%);
  }

  .grid-container {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: 10fr 10fr 10fr 10fr 8fr;
    align-items: center;
    padding: 0;
    outline: 1px solid black;
    width: 420px;
    height: 250px;
    box-shadow: 5px 5px #000000;
    background-color: white;
  }

  .grid-item {
    padding: 10px;
    background-color: #F5F5F5;
  }

  .header {
    grid-column: span 6;
    border-bottom: 1px solid black;
    font-size: 24px;
    text-align: left;
  }

  .cursor {
    font-size: 28px;
    display: inline;
    animation: 1s blink step-end infinite;
  }

  h2 {
    font-size: 28px;
  }

  .platform {
    grid-column: span 1;
    justify-self: stretch;
    align-self: stretch;
    line-height: 31px;
    border-right: 1px solid black;
  }
  .address {
    grid-column: span 5;
    justify-self: stretch;
    align-self: stretch;
    text-align: left;
    line-height: 31px;
  }

  nav {
    display: grid;
    grid-column: span 6;
  }

  .link {
    grid-column: span 2;
    text-align: center;
    border-top: 1px solid black;
  }
}
