@import url('https://fonts.googleapis.com/css?family=DM+Serif+Text|Quicksand&display=swap');
html,
body {
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
    background: rgb(242, 240, 230);
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
}

.titleContainer {
    width: 100%;
    height: 200px;
    font-family: 'DM Serif Text', serif;
    font-size: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#testContainer {
    display: block;
    width: 70%;
    min-width: 375px;
    height: calc(100% - 230px);
    position: relative;
	padding-right: 15px;
}

#dynamicContainer {
    /*left: 15%;*/
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
}

.articleListing {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
}

.footer {
    width: 100%;
    height: 30px;
    background: black;
    position: absolute;
    top: calc(100% - 30px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.author {
    color: white;
    font-family: 'Quicksand', sans-serif;
    font-size: 15px;
}

.catalogmember {
    width: 350px;
    height: 170px;
    padding-left: 5px;
    padding-right: 5px;
    margin: 10px;
    border-width: 1px;
    border-style: solid;
    border-image: -webkit-linear-gradient(top, rgb(242, 240, 230) 0%, rgb(140, 140, 140) 25%, rgb(140, 140, 140) 75%, rgb(242, 240, 230) 100%);
    border-image: linear-gradient(to bottom, rgb(242, 240, 230) 0%, rgb(140, 140, 140) 25%, rgb(140, 140, 140) 75%, rgb(242, 240, 230) 100%);
    border-image-slice: 1 100%;
    cursor: pointer;
    transition: transform .3s;
}

.catalogmember:hover {
    transform: scale(1.05);
}

.membertitle {
    font-family: 'DM Serif Text', serif;
    font-size: 35px;
    height: 50px;
    width: 100%;
    text-align: center;
}

.memberdetails {
    font-family: 'Quicksand', sans-serif;
    font-size: 18px;
    width: 350px;
    height: 120px;
    overflow: hidden;
    text-align: center;
}

.blurcontainer {
    position: relative;
    height: 0;
    width: 0;
    left: 0;
    top: 0;
}

.blur {
    position: absolute;
    left: 0;
    top: 0;
    height: 170px;
    width: 350px;
    -webkit-box-shadow: inset 0px -80px 30px -55px rgba(242, 242, 230, 1);
    -moz-box-shadow: inset 0px -80px 30px -55px rgba(242, 242, 230, 1);
    box-shadow: inset 0px -80px 30px -55px rgba(242, 242, 230, 1);
    z-index: 1000;
}

.clickframe {
    position: absolute;
    left: 0;
    top: 0;
    height: 170px;
    width: 350px;
    z-index: 1001;
}

.return {
    font-family: 'Quicksand', sans-serif;
    font-size: 15px;
    width: 100%;
    text-align: center;
    cursor: pointer;
}

#lowerReturn {
    padding-bottom: 25px;
}

.articleContent {
    width: 100%;
}

.articleTitle {
    padding-top: 10px;
    padding-bottom: 10px;
    font-family: 'DM Serif Text', serif;
    font-size: 60px;
    width: 100%;
    text-align: center;
}

.articleContent strong {
    font-family: 'Quicksand', sans-serif;
    font-size: 22px;
    width: 100%;
}

.articleContent p {
    font-family: 'Quicksand', sans-serif;
    font-size: 20px;
    width: 100%;
}

.articleContent .imgbox {
    width: 100%;
    justify-content: center;
    padding-bottom: 50px;
}

.articleContent .imgbox .imgdesc {
    font-family: 'DM Serif Text', serif;
    font-size: 18px;
    padding-top: 10px;
    padding-bottom: 5px;
    text-align: center;
}

.articleContent .imgbox img {
    max-width: 50%;
    margin-left: calc(50% - 25%);
}

.articleContent .separator {
    width: 100%;
    justify-content: center;
    padding-bottom: 10px;
}

.articleContent .separator img {
    max-width: 100px;
    margin-left: calc(50% - 50px);
}