.stories_container
{
    overflow: hidden;
    display: flex;
    padding-left: 250px;
}
.stories
{
    display: flex;
    place-content: center;
    position: relative;
    transition: left 0.5s;
}
.stories ul
{
    display: flex;
    gap: 10px;
    list-style: none;
    flex-wrap: nowrap;
    padding-left: 0px;
}
.story
{
    position: relative;
    flex-basis: 800px;
}
.story .image_container
{
    height: 100%;
    display: flex;
    place-items: center;
    place-content: center;
}
.story .image
{
    height: 530px;
}
.story .back
{
    display: none;
    position: absolute;
    background-color: rgb(0, 0, 0, 0.6);
    width: 100%;
    height: 100%;
    top: 0px;
    place-items: center;
    justify-content: space-evenly;
}
.story .back-border
{
    display: flex;
    place-items: center;
    text-align: center;
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    border: solid 3px rgb(255, 255, 255, 0.8);
}
.story .back h2
{
    width: 100%;
    color: white;
    padding: 10px;
}


.presentation
{
    padding: 0px 25px 25px 250px;
    text-align: justify;
    font-family: "American Typewriter";
    width: 800px;
    font-size: 1.2em;
}
.presentation .content
{
    border-bottom: solid 2px orange;
    padding-bottom: 0px;
    font-size: 1.1em;
}
.presentation h1
{
    white-space: nowrap;
    margin-bottom: 55px;
}
