
body {
    margin-top: 7rem;
    padding-right: 5rem;
    padding-left: 5rem;
}

.story {
    justify-items: center;
}

.story-banner {
    position: relative;
    display: block;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;

    width: 45%;
}

.story-banner:not(:first-child) {
    margin-top: 2.6rem;
}

.story-banner img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.story-banner:hover img {
    transform: scale(1.05);
    filter: brightness(0.7);
}

.story-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0.75rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: aliceblue !important;
    font-size: 1rem;

    text-shadow:
            0 0 10px aliceblue,
            0 0 15px aliceblue,
            0 0 15px aliceblue,
            0 0 25px aliceblue;

}









.footer {
    margin-top: 2rem;
}