body {
    background-color: #ecdfa1;
    font-family: 'Vollkorn', serif;
    font-size: 18px;
    overflow-x: hidden;
}

:root {
    --link-color: #fb6c0b;
    --link-underline-color: #fb6c0b;
}

a:not(.social-icons a) {
    color: var(--link-color);
    text-decoration: none;
    position: relative;
    display: inline-block;
}

a:not(.social-icons a)::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 1px;
    bottom: -2px;
    left: 0;
    background-color: var(--link-underline-color);
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
}

a:not(.social-icons a):hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.social-icons {
    padding-left: 20px;
}

.social-icons i {
    display: inline-block;
    transition: transform 0.2s;
}

.social-icons a:hover i {
    color: #fb6c0b;
    transform: scale(1.2);
}

footer {
    --link-color: #fff;
    --link-underline-color: #fff;
    background-color: #035a6b;
    color: #fff;
}
