body {
    background: #423b30;
  }
  .svg {
    position: relative;
    width: 200px;
    height: 200px;
    display: inline-block;
  }
  .svg svg {
    width: 200px;
    height: 200px;
  }
  .svg.muted {
    opacity: 0.5;
  }
  .svg.click::before,
  .svg.click::after {
    position: absolute;
    width: 10px;
    height: 10px;
    opacity: 0.75;
  }
  .svg.click::after {
    content: '';
    top: 15%;
    right: 15%;
  }
  .svg.click::before {
    content: '';
    bottom: 15%;
    left: 15%;

  }
  a {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    color: rgb(109, 38, 38);
    padding: 1em;
    background-color: #00ff62;
    font-family: 'Monospace';
    text-decoration: none;
  }