body {
    background-color: #F3FFBD;
    margin: auto;
    width: 100%;
  }
  .content {
    width: 80%;
    margin: auto;
  }

  .content:hover .toothpick {
    right: -30%;
    transition: all 0.5s cubic-bezier(0.25, 0.07, 1, -0.05);
  }

  .content:hover .olive {
    transition: all 0.5s cubic-bezier(0.25, 0.07, 1, -0.05);
    left: -10%;
  }

  .olive {
    background-color: darkolivegreen;
    border: none;
    border-radius: 50%;
    width: 110px;
    height: 150px;
    margin: 200px auto;
    /* transform: rotate(-40deg); */
    position: relative;
    top: 0;
    left: -20%;
    transition: all 0.5s cubic-bezier(0.25, 0.07, 1, -0.05);
  }

  .olive:after {
    content: "";
    background-color: #fff;
    opacity: 0.4;
    width: 21px;
    height: 39px;
    position: absolute;
    border-radius: 50%;
    top: 62px;
    left: 45px;
  }

  .olive:before {
    content: "";
    position: absolute;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 34px;
    top: 5px;
    left: 30px;
    background-image: -webkit-linear-gradient(top, #c0392b 4%, #713B36 94%);
  }

  .toothpick {
    position: relative;
    border: solid 1px #d35400;
    width: 400px;
    top: -279px;
    right: -40%;
    z-index: -1;
    transition: all 0.5s cubic-bezier(0.25, 0.07, 1, -0.05);
  }

  .toothpick:after {
    content: "";
    position: absolute;
    border: solid 2px #d35400;
    width: 40px;
    transform: rotate(113deg);
    top: -2px;
    right: 34px;
  }

  .title {
    position: absolute;
    font-family: 'Major Mono Display', monospace;
    color: darkolivegreen;
    top: 16px;
    left: 16px;
    font-size: 42px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    word-spacing: -5px;
  }
  
  .caption a {
  font-size: 15px;
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-style: regular;
  color: oli;
  text-decoration: none;
  position: absolute;
    top: 100px;
    left: 16px;
  }

  h3 {
    font-size: 10px;
    font-family: roboto, sans-serif;
    font-style: regular;
    color: olive;
    text-decoration: none;
    position: absolute;
      top: 120px;
      left: 16px;
    }