.home {
    margin: 10px auto;
    text-align: center;
}

.page-content {
    margin-top: 80px;
    margin-bottom: 80px;
}

.not-found {
    margin: 30px 0;
    font-size: 4em;
    line-height: 1;
    letter-spacing: -1px;
}

.center-on-screen {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 10px;
}

.no-anchor-decoration {
    text-decoration: none;
}

.any-anchor-decoration {
    color: inherit;
    text-decoration: none;
}

.inline {
    display: inline;
}

.no-scroll {
    overflow-y: hidden;
}

.hand {
    cursor: pointer;
}

.link-text {
    color: inherit;
    text-decoration: none;
}

.link-text:hover {
    color: inherit;
    text-decoration: none;
}

@keyframes underline {
    to {
        width: 100%;
    }
}

@keyframes underline-reverse {
    to {
        width: 0;
    }
}

.underline {
    position: relative;
    display: inline-block;
    text-decoration: none;
}

.underline::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: rgb(68, 132, 184);
    transition: width 0.3s ease;
}

.underline:hover::after, .underline.current::after {
    width: 100%;
}

a ~ a {
    margin-left: 10px;
}