.title {
    line-height: 1.4em;
}

.footer hr {
    display: block;
}

.youtube {
    aspect-ratio: 16 / 9;
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.game {
    width: 100%;
}

.top-icon svg {
    fill: var(--text-color);
    height: 1.5em;
    width: 1.5em;
    margin-right: 5px;
    vertical-align: -.3em;
}

.top-link {
    font-size: 1em;
    color: var(--text-color);
    text-decoration: none;
    opacity: .8;
}

.top-text {
    margin-right: 5px;
    text-decoration: underline;
}

.top-item {
    display: inline-block;
}

.top-items {
    display: flex;
    width: 100%;
    justify-content: space-between;
}

.image-container {
    width: 300px;
    height: 200px;
    overflow: hidden;
    border-radius: 10px;
}

.page-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: 50%;
    transition: all .2s;
    cursor: pointer;
}

.page-image:hover {
    filter: blur(5px);
    transform: scale(1.1);
}

@media screen and (max-width: 1964px) {
    .page-images {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 40px;
        margin-top: 40px;
        margin-bottom: 40px;
    }
}

@media screen and (min-width: 1964px) {
    .page-images {
        position: absolute;
        right: -25%;
        top: 20px;

        display: flex;
        flex-direction: column;
        gap: 40px;
    }
}

.carousel {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, .3);
    z-index: 1000;

    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
}

#carousel-container {
    position: absolute;
    margin: 0;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);

    display: flex;
    justify-content: center;

    height: 80vh;
    width: 100%;
}

#carousel-image {
    border-radius: 10px;
    background-size: cover;
}

.arrow-left, .arrow-right {
    width: 1em;
    padding: 0 1em 0 1em;
    cursor: pointer;
    display: flex;
}

.arrow-left {
    padding-left: 3em;
}

.arrow-right {
    padding-right: 3em;
}
