body {
    background-color: white;
}
.storytitle {
    text-align: left;
    font-size: 90px;
    margin-bottom: 36px;
    padding: 0;
    margin-top: 0;
}
.stories {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    margin: 0 1% 0 1%;
}
.story {
    width: 30%;
    background-color: white;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 20px;
    padding-bottom: 30px;
    border-radius: 20px;
    transition: all 0.2s ease-in;
    margin-bottom: 15px;
    border-style: solid;
    border-color: #f0f0f0;
    /*cursor: pointer;*/
}
.story:hover {
    /*
    box-shadow: 28px 28px 50px #bebbbf, -23px -23px 45px #ffffff;*/
    box-shadow: 28px 28px 50px #bebbbf;
    border-color: rgba(0, 0, 0, 0);
}
a {
    text-decoration: none;
    color: black;
}
.storyphoto {
    height: auto;
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
}
.storydesc {
    margin-left: 0;
    color: #002676;
}
.subtitle {
    font-size: 28px;
    margin: 0;
    /*margin-top: 20px;*/
    margin-bottom: 20px;
    color: #002676;
}
.position {
    font-style: italic;
    color: #f4c168;
}
p {
    font-size: 18px;
    margin-bottom: 20px;
}
.content {
    margin-bottom: 16px;
}
.button {
    font-size: 18px;
}


@media only screen and (max-width: 1400px) {
    .story {
        width: 100%;
        margin-top: 0;
        margin-bottom: 20px;
    }
    .stories {
        flex-direction: row;
    }
}