.title {
    font-family: "Pixelify Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    font-size: 100px;
    margin-top: 5px;
    margin-bottom: 0;
}

.equation-title {
    margin-top: 8px;
    margin-bottom: 10px;
}

.scroll-items-container {
    box-sizing: border-box;
    display: flex;
    gap: 10px;
    align-items: center;
    overflow: scroll;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scroll-padding: 0 10px;
    -ms-overflow-style: none;
    scrollbar-width: none;
    position: relative;
}

.homepage-scroller {
    box-sizing: border-box;
    position: relative;
    width: 94%;
    margin: auto;
    padding: 1px;
}

.card {
    flex: 0 0 auto;
    width: 13.7%;
    aspect-ratio: 1 / 1;
    scroll-snap-align: center;
    scroll-snap-align: start;
    overflow: hidden;
    border-radius: 12px;
    position: relative;
    cursor: default;
    transform: scale(0.95);
    transition: 0.25s all;
    user-select: none;
}

.card img {
    width: 100%;
    height: 100%;
}

.card figcaption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 10px;
    transform: translateY(45px);
    opacity: 0;
    transition: 0.25s all;
}

.card:hover figcaption {
    transform: translateY(0);
    opacity: 1;
    text-shadow: 0 0 5px var(--shadow-color);
}

.card:hover {
    transform: scale(1);
}

.homepage-scroller::-webkit-scrollbar {
  display: none;
}

.scroll-arrow {
    display: inline-block;
    position: absolute;
    z-index: 200;
    background-color: var(--secondary-color-transparent);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 12px 0 14px;
    border: none;
    color: var(--text-color);
    font-size: 20px;
    opacity: 0;
    transition: all 0.2s;
    top: 0;
    border-radius: 2px;
}

.scroll-arrow:hover {
    background-color: var(--primary-color-transparent);
}

.scroll-arrow-left {
    left: 0px;
}

.scroll-arrow-right {
    right: 0px;
}

.homepage-scroller:hover .scroll-arrow {
    opacity: 1;
}

.episode-title {
    margin-top: 40px;
    margin-bottom: 10px;
}

.billnye-card {
    background-color: black;
    flex: 0 0 auto;
    /* width: 11.9%; */
    width: 16.1%;
    aspect-ratio: 2 / 3;
    scroll-snap-align: center;
    scroll-snap-align: start;
    overflow: hidden;
    border-radius: 9px;
    position: relative;
    cursor: default;
    transform: scale(0.95);
    transition: 0.25s all;
    user-select: none;
}

.billnye-card img {
    width: 100%;
    height: 100%;
}

.billnye-card figcaption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 10px;
    transform: translateY(45px);
    opacity: 0;
    transition: 0.25s all;
}

.billnye-card:hover figcaption {
    transform: translateY(0);
    opacity: 1;
    text-shadow: 0 0 5px var(--shadow-color);
}

.billnye-card:hover {
    transform: scale(1);
}

.socials img {
    width: 35px;
    height: 35px;
}

.socials {
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 25px 0 15px 0;
}