body {
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    font-style: normal;
    margin: 0;
}

#container {
    display: flex;
    width: 100vw;
    height: 100vh;
}

#header {
    width: 30%;
    height: 100%;
    padding: 0% 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    text-align: right;
}

#contents { 
    width: 60%;
    height: calc(100% - 50px);
    padding-top: 50px;
    background-color: black;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: auto;
}


h1 {
    font-family: 'Quicksand', sans-serif;
    font-size: 2.5em;
    font-weight: 300;
    margin: 0px;
}

#mainHeader {color: red;}

a {
    text-decoration: none;
    color:red;
}

a:hover {
    font-weight: bold;
}

h2 {
    font-weight: 300;
    font-size: 1.25em;
    margin: 0px;
}

#generateButton {
    background-color: #ec1c24;
    color: #ffffff;
    border: 1px solid #ffffff;
    margin: 10px 0px;
    width: 120px;
    height: 40px;
}

#generateButton:hover {
    background-color: #ffffff;
    color: #ec1c24;
    border: solid 1px #ec1c24;
}

.post {
    width: 80%;
    background-color: #1a1a1b;
    display: flex;
}

.updownvote {
    display: flex;
    flex-direction: column;
    width: 40px;
    align-items: center;
    padding-top: 10px;
}

.postTheme { color: #818384; }

.postTextSize { font-size: 13px; }

.postTextStrong { font-weight: bold; }

.textTheme { 
    color: #d7dadc; 
    overflow-x: hidden;
}

.postMain {
    display: flex;
    flex-direction: column;
    width: calc(100% - 40px - 10px);
    padding-top: 10px;
    padding-right: 10px;
    margin-bottom: 10px;
}

.arrows { padding: 3px 0px; }

img {
    border-radius: 50%;
    height: 25px;
    width: 25px;
    padding: 0px 5px;
}

.postMeta {
    height: 30px;
    display: flex;
    align-items: center;
}

.postTitle {
    padding: 15px 0px;
    font-size: 20px;
    font-family: Arial, Helvetica, sans-serif;
}

.postStats {
    display: flex;
    align-items: center;
    padding-top: 13px;
}

.postStatsIcons { padding: 0px 5px; }

.postLogin {
    padding: 5px 10px;
    margin: 10px 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border:  solid 1px rgba(129, 131, 132, 0.3);
    border-radius: 5px;
}

.btn {
    background-color: #1a1a1b;
    border-radius:5px;
    border:  solid 1px #d7dadc;
	display:inline-block;
	cursor:pointer;
	color:#d7dadc;
	font-size:15px;
    padding: 7.5px 0px;
    width: 100px;
	text-decoration:none;
}

#signUpBtn {
    background-color: #d7dadc;
    color: #1a1a1b;
}

.btn:focus {outline:0;}

.postSortBy {
    display: flex;
    height: 30px;
    padding-top: 10px;
    border-bottom:  solid 1px rgba(129, 131, 132, 0.3);
    margin-bottom: 10px;
}

.postSortByOptions { font-size: 18px; }

.postCommentTitle, .postComment { display: flex; }

.postCommentTitle { padding-bottom: 5px; }

.postEnd {
    padding-bottom: 50px;
}

.mediaContainer {
    display: flex;
}

#mediaMessage {
    display: none;
}

@media (max-width: 750px) {

    #container {
        display: flex;
        flex-direction: column;
        overflow: auto;
        width: 100%;
        height: auto;
    }

    #header {
        width: calc(100% - 20px);
        height: 30vh;
        padding: 0px 10px;
        align-items: center;
        text-align: center;
    }

    #generateButton {
        background-color: #ec1c24;
        color: #ffffff;
        border: 1px solid #ffffff;
        margin: 10px 0px;
        width: 80%;
        height: 40px;
    }

    #generateButton:hover {
        background-color: #ec1c24;
        color: #ffffff;
        border: 1px solid #ffffff;
    }
    
    #contents {
        width: 100%;
    }

    .postLogin, .mediaContainer {
        display: none;
    }

    #mediaMessage {
        display: inline;
        padding-top: 5px;
        color: #818384;
        font-size: 13px;
    }
}