#root {
    height: 100%;
}

.to-blog {
    margin: 50vh auto;
    transform: translateY(-50%);
    width: fit-content;
    height: fit-content;
}

a {
  text-decoration: none;
  color: currentColor;
}

.jump-link {
    display: flex;
    align-items: end;   
}

.jump-link > * {
    transition: 0.3s ease-out;
}

.link-forward {
    margin: 0 0 3.5em 2em;
    border-radius: 2em;
    border: 1px solid #b0b0b0;
    padding: 0.75em;
    display: flex;
    align-items: center;
}

.link-forward::after {
    content: ">";
    padding-left: 1em;
    font-size: 0.75em;
}

.jump-link:hover .link-forward {
    filter: brightness(0.50);
    transform: scale(1.03);
}

.jump-link:hover img {
    filter: brightness(1.125);
    transform: scale(0.97);
}