.vp-page.not-found {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  box-sizing: border-box;

  width: 100vw;
  max-width: var(--home-page-width);
  margin: 0 auto;
  padding: calc(var(--navbar-height) + 1rem) 1rem 1rem !important;

  text-align: center;

  .action-button {
    display: inline-block;

    box-sizing: border-box;

    margin: 0.25rem;
    padding: 0.75rem 1rem;
    border-width: 0;
    border-bottom: 1px solid var(--theme-color-dark);
    border-radius: 3rem;

    background: var(--theme-color);
    color: var(--white);
    outline: none;

    font-size: 1rem;

    transition: background 0.1s ease;

    &:hover {
      background: var(--theme-color-light);
      cursor: pointer;
    }
  }
}
