*
{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Open Sans';
}

body, html
{
    height: 100%;
}

main
{
    padding-top: 60px;
}

.theme-bg-color
{
    background-color: #006E7A;
}

.button
{
    color: #fafafa;
    text-align: center;
    padding-top: 8px;
    padding-bottom: 8px;
    border-radius: 3px;
}

.button:hover
{
    background-color: #00535C;
    color: #fafafa;
}

.button-sizing
{
    width: 20%;
    margin: 0 auto;
    min-width: 140px;
}

.tell-story-button
{
    width: 8%;
}

.top-container
{
    height: 350px;
    background-image: url("../images/stories-bg.jpeg");
    background-repeat: no-repeat;
    background-size: cover;
    color: #fafafa;
}

.bg-cover
{
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}

.story-share-desc
{
    width: 26%;
    min-width: 260px;
    text-align: center;
}

.personal-stories
{
    width: 100%;
    flex-direction: column;
    flex-wrap: wrap;
    align-content: center;
    align-items: center;
}

.article-loop 
{
    display: flex;
    min-height: 240px;
    flex-wrap: wrap;
    background-color: #ededed;
    margin-bottom: 16px;
}

.story-image
{
    overflow: hidden;
    height: 240px;
}

.story-image img
{
    width: 100%;
    object-fit: cover;
}

.story-desc
{
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
    padding: 12px;
}

.story-desc h3, .story-author
{
    width: 100%;
}

.story-desc h3
{
    margin-bottom: 6px;
}

.story-author
{
    margin-bottom: 20px;
}

.story-date
{
    display:none;
}

.story-content
{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    width: 100%;
    margin-bottom: 12px;
    height: 75px;
}

.story-author
{
    font-weight: bold;
    color: #999;
}

.story-desc a
{  
    align-self: flex-end;
    width: 125px;
}