* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background: #f4f4f4;

    font-family: 'Switzer-Medium';

    cursor: default;
}

main {
    padding: var(--margin);
}

html {
    scroll-behavior: smooth;
}

html,
body {
    overscroll-behavior: none;
}

a,
button,
[role="button"] {
    cursor: pointer;
}

input,
textarea {
    cursor: text;
}


/* ---------- FOOTER ---------- */

.footer-scroll {
    position: relative;
    height: 200vh;
    margin-top: -19vh;
}

.sticky_wrap {
    position: sticky;
    height: 100vh;
    top: 0;
    overflow: hidden;
}

.horizontal_scroll.footer-track {
    display: flex;
    align-items: flex-end;

    width: max-content;
    height: 100%;
    padding: 0 0 var(--half-margin) 100vw;
}

.footer-item {
    display: flex;
    min-width: fit-content;
    text-align: right;

    font-size: var(--topbar-font-size);
    line-height: 1.4;
}

.footer-item.logo {
    width: 70vw;
}

.footer-item.logo img {
    width: 100%;
    height: auto;
}

.column-nav,
.column-socials {
    display: inline-flex;
    flex-direction: column;
    margin-left: 23%;
}

.column-socials {
    padding-right: var(--margin);
}

.footer-item a {
    text-decoration: none;
    display: inline-block;

    color: black;

    transform-origin: right;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.footer-item:hover a {
    opacity: var(--opacity-value);
}

.footer-item a:hover {
    opacity: 1;
    transform: scale(1.75);
}


/* ---------- AFTER-FOOTER ---------- */

.credits {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 0 12px 0;
}

.credits p {
    width: fit-content;

    font-size: var(--afterfooter-font-size);
    opacity: var(--opacity-value);
}

.credits .left {
    margin-left: var(--margin);
}

.credits .center {
    margin-left: -395px;
}

.credits .right {
    margin-right: var(--margin);
    display: flex;
    align-items: center;
    gap: 3px;
}

.credits .right a,
.credits .center a {
    text-decoration: none;
    color: black;
}

.credits .right a:hover,
.credits .center a:hover {
    text-decoration: underline;
}