.stories-container{
    display: grid;
    /*align-items: center;*/
    justify-items: center;
    grid-template-columns: 50% 50%;
    background-color: rgb(110, 110, 110);
    padding: 20px;
}

.story-image{
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 25px;
    opacity: 0.65;
    box-shadow: 0px 3px 6px 0px rgb(0, 0, 0, 0.45);
}

.story-text-container{
    width: 100%;
    display: grid;
    grid-template-rows: auto auto;

    color: whitesmoke;
    text-shadow: 1px 1px black;
}

.story-text{
    font-family: 'Rubik', Arial;
    text-align: justify;
    padding: 25px;
}

.story-text.head{
    display: flex;
    align-items: end;
    justify-content: center;
    text-align: center;
    padding-bottom: 0px;
    font-weight: bold;
    font-size: large;
}