#forms {
  margin-right: 10%;
  margin-left: 10%;
  overflow: auto;
  height: auto;
  border-style: solid;
  box-shadow: 8px 8px 8px 1px rgba(0, 0, 255, .2);

  a {
    padding-top: 8px;
    line-height: 30px;
    border-style: solid;
    border-radius: 10px;
    border-color: black;
    text-align: center;
    margin-left: 2%;
    margin-top: 2%;
    margin-bottom: 2%;
    font-size: 20px;
    float: left;

    width: 45%;
    @media (max-width: 60em) {
      width: 90%;
    }

    figure {
      margin: 0;

      .linked-to {
        /* shown when targeted (/forms#formid); required for WCAG */
        display: none;
        color: black;
      }

      hr {
        border-top: solid 3px;
      }

      img {
        width: 90%;
      }
    }
  }
  a:target   {
    background-color: #fcfa83;
    .linked-to {
      display: block;
    }
  }
}