.anek-body {
  overflow-y: scroll;
}

.anek-random {
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  height: 2em;
  margin-right: 2%;
  border: 1px solid #8e8e8e;
  border-radius: 20px;
  padding: 0 10px 0 10px;
  font-size: 1rem;
  text-decoration: none;
  background-color: #fff;
  transition: 0.2s ease;
  cursor: pointer;
}

.anek-random:hover {
  border: 1px solid #000;
}

.anek-main {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2%;
}

.anek-container {
  box-sizing: border-box;
  width: 60%;
  margin: 3em auto;
  border: 1px #dadada solid;
  border-radius: 1em;
  padding: 0 1em 1em 1em;
}

.anek-header {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  margin-bottom: 1em;
  border-bottom: 1px #dadada solid;
}

.anek-header__number {
  margin-right: auto;
}

.anek-header__arrow:not([href]) {
  color: #000;
  cursor: default;
}

.anek-header__arrow:not([href]):hover {
  color: #000;
}


.anek-header__arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.3em 0.5em;
  color: var(--linkColor);
  font-size: 1.5em;
  text-decoration: none;
  transition: 0.2s linear;
}

.anek-header__arrow:hover {
  color: var(--linkHoverColor);
}

.anek-footer {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  border-top: 1px #dadada solid;
  padding-top: 1em;
}

.anek-footer__copy {
  height: 30px;
  border: 1px #dadada solid;
  border-radius: 20px;
  padding: 0 10px 0 10px;
  color: #727272;
  background-color: unset;
  transition: 0.2s linear;
  cursor: pointer;
}

.anek-footer__copy:hover {
  border: 1px #000 solid;
  color: #000;
}

.anek-footer__like--copied {
  border: 1px #6abf69 solid !important;
  color: #fff !important;
  background-color: #6abf69 !important;
}

.anek-footer__like {
  border: none;
  padding: 0 4px 0 4px;
  opacity: 0.4;
  color: #000;
  font-size: 1.1em;
  background-color: unset;
  transition: 0.2s linear;
  cursor: pointer;
}

.anek-footer__like:hover {
  opacity: 1;
}

.anek-footer__like--liked {
  opacity: 1 !important;
  color: #f7630c !important;
}

@media only screen and (max-width: 850px) {
  .anek-container {
    width: 100%;
  }
}