a,
a:visited {
    color: mediumblue !important;
    text-decoration: none;
}

.home__roster {
    font-family: "Inter Tight";
    padding: 8rem 3rem 0rem 3rem;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    column-gap: 8em;
}
.home__roster > a {
    font-size: 240%;
}

.home__roster .--etc {
    display: flex;
}

.home__socials {
    text-align: center;
    padding: 3em 3em;
}

.home__meaning {
    padding: 2rem 3rem 0rem 3rem;

    font-size: 90%;

    text-align: justify;
}

.home__meaning span.--not-important {
    color: #d9d9d9;
}

.home__meaning.--from {
    text-align: right;
    padding: 0;
    margin: 0 4.5em;
    font-size: 70%;
}

.home__past {
    text-align: center;
    padding: 0 3em;
}

.home__roster span.--correct {
    text-decoration: wavy underline red !important;
}

.home__ticker {
    margin-top: 5em;
}

@media (max-width: 767px) {
    .home__roster {
        padding: 3em;
        box-sizing: border-box;
        column-gap: 2em;
    }

    .home__roster > a {
        font-size: 160%;
        margin: 0;
        gap: 50px;
    }

    .home__roster .--etc {
        text-align: center !important;
    }
}

.ticker-wrap {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    height: 3.5rem;

    font-family: monospace;
}

.ticker {
    display: inline-block;
    margin-top: 5px;
    animation: marquee 20s linear infinite;
}

.item-collection-1 {
    position: relative;
    left: 0%;
    animation: swap 20s linear infinite;
}

.item {
    display: inline-block;
    padding: 0 1rem;
    font-size: 1em;
    color: var(--primary-color);
    font-weight: 800;
}

/* Transition */
@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

@keyframes swap {
    0%,
    50% {
        left: 0%;
    }
    50.01%,
    100% {
        left: 100%;
    }
}
