@import url('https://fonts.googleapis.com/css?family=Merriweather');
@import url('https://fonts.googleapis.com/css?family=Roboto+Slab');
@import url('https://fonts.googleapis.com/css?family=PT+Sans');

*, *:before, *:after {
    box-sizing: border-box;
}

body {
    background-color: #FFF;
    font-family: -apple-system,system-ui,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.6667;
    color: #3a3a3a;
    text-align: justify;
    display: block;
	margin: 0px;
}

footer{
    position: fixed;
    left: 0;
    bottom: 0;
    /*position: absolute;
    top: 1400px;
    left: 0;*/
    width: 100%;
    height: 110px;
    text-align: center;
    background-color: #3a3a3a;
    color: #dfdfdf;
    z-index: 5;
	
}
footer a{
    color: #dfdfdf; 
}

footer a:visited{
    color: #dfdfdf; 
}

.logo {
    position: absolute;
    top: 7%;
    left: 5%;
    transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
}

.title {
    position: absolute;
    left: 10.5%;
    top: 7%;
    font-family: 'PT Slab', sans-serif;
    color: #fff;
    font-weight: 700;
    font-size: 25px;
    vertical-align: middle;
    opacity: 1;
}
/*Links*/

.nonelinks:link {
    text-decoration: none;
    color: #dfdfdf;
}

.nonelinks:hover {
    text-decoration: none;
    color: #dfdfdf;
    text-decoration: underline;
}

.nonelinks:visited {
    text-decoration: none;
    color: rgb(206, 206, 206);
}

.nonelinks:active {
    text-decoration: underline;
    color: #3c4868;
}

a:link {
    color: #324de2;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

a:active {
    color: #3f3f3f;
}

a:visited {
    color: #324de2;
}

/*NAV*/

nav input[type=checkbox]:checked+label .title {
    opacity: 0;
}
nav input[type=checkbox]:checked+label .logo {
    top: 25px;
    transform: scale(1.5);
}

@media(max-width: 1300px) {
    .title {
        opacity: 0;
    }
}

nav {
    background-color: #3f3f3f;
    position: fixed;
    left: -1%;
    top: 0;
    width: 101%;
    height: 80px;
    z-index: 999;
    font: 2em/1 'Roboto Slab', serif;
}
nav a:link{
    color: #1d1f20;
}
nav a:visited{
    color: #1d1f20;
}

.container {
    margin: 0 auto;
    max-width: 80em;
}

/*** INPUT ***/

nav input {
    opacity: 0;
    position: absolute;
    z-index: -1;
}

/*** LABEL ***/

nav label {
    cursor: pointer;
    display: block;
    font-size: 38px;
    height: 90px;
}

/** Hamburger Icon **/

#menu-icon, #menu-icon:before, #menu-icon:after {
    /*background: #696969f5;*/
    background-color: #ebebeb;
    border-radius: 0.05em;
    height: 0.2em;
    transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    width: 100%;
}
#menu-icon {
    display: inline-block;
    margin: 0.4em 0;
    max-width: 1em;
    position: relative;
    top: 25%;
    right: 1.5%;
}

nav label #menu-icon {
    float: right;
}

#menu-icon:before, #menu-icon:after {
    content: '';
    left: 0;
    position: absolute;
}

#menu-icon:before {
    top: -0.4em;
}

#menu-icon:after {
    bottom: -0.4em;
}

/* Close Icon */

nav input[type=checkbox]:checked+label #menu-icon {
    background: transparent;
}

nav input[type=checkbox]:checked+label #menu-icon:before {
    top: 0;
    transform: rotate(-45deg);
    background-color: #1d1f20;
}

nav input[type=checkbox]:checked+label #menu-icon:after {
    bottom: 0;
    transform: rotate(45deg);
    background-color: #1d1f20;
}

/*** MENU ***/

/* Overlay */

nav input:checked~#overlay {
    background: #fffffff5;
    bottom: 0;
    left: 0;
    height: 100%;
    width: 100%;
    position: fixed;
    right: 0;
    top: 0;
    z-index: -1;
    transition: all 1.2s linear;
    transition-delay: -1s;
}

/* List */

nav ul {
    font-size: 25px;
    list-style: none;
    margin: 0;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    padding: 3%;
    text-align: center;
    display: none;
}

nav input:checked~ul {
    margin: 1em;
    max-height: inherit;
    opacity: 1;
    display: block;
}

nav ul>li {
    margin: 0.5em 0;
}

nav ul a:link {
    color: #1d1f20;
    text-decoration: none;
}

nav ul a:hover {
    text-decoration: underline;
}

nav ul a:visited {
    color: #1d1f20;
    text-decoration: none;
}

nav ul#other>li {
    display: inline-block;
    font-size: 16px;
    margin: 1px;
}

nav ul#author {
    position: relative;
    top: 100px;
    font-size: 9px;
}

/*Other*/

#space {
    height: 150px;
    position: relative;
}

#article-title {
    font-family: 'PT Sans';
    text-align: center;
    font-size: 40px;
    color: #226e93;
}