html {
    background-color:
}

body {
    margin-top: 50px;
    margin-bottom: 100px;
}

b {
    font-weight: 400;
}

a {
    color: rgb(0, 0, 0);
    text-decoration: none;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
}
.center {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
  }

.about {
}

.home_menu {
    margin-right: 0;
    border-radius: 0px;
}

.home_title {
    text-align: left;
    font-size: 30px;
    margin: 0px 0 30px 0;
    color: #000000;
    text-align: center;
}

.home_image {
}

.title {
    text-align: center;
    font-size: 30px;
    margin: 0;
    color: #222;
}

.header {
    text-align: left;
    font-size: 30px;
    color: #222;
}

.title_menu {
    background-size: 100%;
    margin: 0px 0px 30px 0px;
    padding: 0px 0 0px 0;
}

.title_font {
    font-family: "Helvetica", sans-serif;
}

.blog_font {
    font-family: "Merriweather", "Cambria", "Palatino Linotype", Palatino, "Times New Roman", serif;
    font-weight: lighter;
}

.sans_font {
    font-family: "Helvetica", sans-serif;
}

.subtitle {
    text-align: center;
    font-size: 22px;
    margin: 0;
    color: #444;
    line-height: 160%;
}

.blog_posts {
/*    width: 50%;*/
    margin: auto;
}

.blog_header {
    font-size: 25px;
    font-weight: 400;
    margin: 0;
}

.blog_date {
    font-size: 18px;
    font-style: italic;
    margin: 0;
    color: #777;
}

.blog_body {
    font-size: 16px;
    margin: 0 0 30px 0;
    line-height: 170%;
    font-weight: 300;
}

.home_body {
    font-size: 18px;
    padding: 0px 30px 10px 60px; /* top right bottom left */
    line-height: 170%;
    font-weight: 300;
}

.home_body a {
    font-weight: 400;
}
.home_body a:hover {
    color: blue;
  }

.block_quotation {
    font-size: 14px;
    margin: 0 0 30px 0;
    padding: 30px;
    background-color: #eee;
    color: #555;
}

.quotation {
    margin: 0;
}

.edit {
    font-size: 14px;
}

.nav {
    border: none;
    list-style:none;
    font-size: 20px;
    border-radius: 3px;
    margin:0;
    padding: 10px 30px 10px 30px; /* top right bottom left */
    text-align:center;
}

.nav li {
    display:inline;
}

.nav a {
    display:inline-block;
    padding: 10px 30px 10px 30px; /* top right bottom left */
    color: black;
    text-decoration: none;
    border-radius: 3px;
    background-color: #eee;
}

.nav a:hover {
    background-color: #eee;
    color: blue;
}

hr {
    width: 50%;
    height: 1px;
    border-color: #eee;
    margin-bottom: 35px;
    margin-top: 35px;
}

 /* Style the buttons that are used to open and close the accordion panel */
button.accordion {
    background-color: #eee;
    color: #607d8b;
    cursor: pointer;
    padding: 20px 32px 20px 32px;
    margin: 0px 0px 0px 0px;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    transition: 0.3s;
    border-radius: 5px;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.07);
}

/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
button.accordion.active, button.accordion:hover {
    background-color: #ddd;
}

div.panel {
    max-height: 0;
    overflow: hidden;
    transition: 0.5s ease-in-out;
    opacity: 0;
}

div.panel.show {
    opacity: 1;
    max-height: 100000px; /* Whatever you like, as long as its more than the height of the content (on all screen sizes) */
}
