html {
    font-family: Georgia;
}

body {
    margin: 0;   
    overflow-y: scroll;
    overflow-x: hidden;
}

.unifrakturmaguntia-regular {
  font-family: "UnifrakturMaguntia", cursive;
  font-weight: 400;
  font-style: normal;
}

@font-face {
    font-family: 'PlanetKosmos'; /*a name to be used later*/
    src: url(fonts/PLANK.woff); /*URL to font*/
}

h2 {
    font-family: PlanetKosmos;
}

/* title */
.wrapper #title {
    font-size: 50px;
    text-shadow: 1px 1px 15px #eaeaea;
    width: 450px;
    height: 75px;
    z-index: 4;
    position: absolute;
    margin-top: -52px;
    margin-bottom: 0;
    color: white;
}

/* wrapper */
.wrapper {
    position: absolute;
    z-index: 3;
    top:0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 700px;
    height: 400px;
    background-color: aliceblue;
    box-shadow: 0 0 25px 30px aliceblue;
}

/* side menu */

.wrapper .sidemenu {
    float: left;
    height: 100%;
    width: 180px;
    overflow-y: scroll;
    font-family: Arial;
    background-color: aliceblue;
}

.wrapper .sidemenu ul {
    margin-top: 40px;
    padding: 0 8px;
}

.wrapper .sidemenu li {
    list-style: none;
    padding: 5px 0 0 0;
    margin: 0;
}

.wrapper .sidemenu a {
    color: #5d5d5d;
    text-decoration: none;
    padding-left: 5px;
}

.wrapper .sidemenu a:hover {
    font-style: italic;
    text-decoration: none;
}

/* blog content */

.wrapper .content {
    height: 100%;
    width: 520px;
    margin-left: 180px;
    background-color: aliceblue; 
    overflow-y: scroll;
}

.wrapper .content h3 {
    font-size: 30px;
    color: #c9c9c9;
    font-family: Arial;
    font-weight: normal;
    font-style: italic;
    letter-spacing: 10px;
    margin: 0 0 10px 10px;
}

.wrapper .content .entries {
    padding-top: 38px;
}

.collapsible {
    background-color: #8aa0b2;
    color: #5d5d5d;
    font-family: Arial;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    text-align: left;
    outline: none;
    font-size: 15px;
    margin: 0;
    border: none;
}

.active, .collapsible:hover {
    background-color: #445765;
    color: white;
}

.dropcontent {
    padding: 0 18px;
    max-height: 0;
    overflow-y: scroll;
    transition: max-height 0.2s ease-out;
    background-color: #fff;
    color: #5d5d5d;
}

/* back button */
#back {
    position: fixed;
    bottom: 0;
    margin-bottom: 15px;
    margin-left: 15px;
    width: 60px;
}