.sticky-thingy {
  position: fixed;
  top: 30%;
  right: 0;

  button {
    position: relative;
    display: flex;
    align-items: center;
    right: -205px;
    transition: right 500ms;
    text-decoration: none;
    cursor: pointer;
    padding: 10px 20px !important;
    color: white;
    justify-self: left;
    width: 100%;
  }

  button:hover {
    right: 0;
  }
}

.sticky-thingy-text {
  color: white;
  font-size: 24px;
  padding: 1px 20px;
  width: 100%;
  text-align: left;
  margin: 0;
}

