* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #fff;
    color: #000;
    font-family: Helvetica, Arial;
    text-align: center;
    font-size: 1.4rem;
    line-height: 1.8em;
}

.wrapper {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    padding: 40px;
    text-align: justify;

}

header {
    background-color: #fff;
}

header .wrapper {
    max-width: 2000px;
    margin-left: 0px;
    margin-right: auto;
    padding-top: 30px;
    padding-bottom: 30px;
    text-align: left;
    background: #fff;
}

header a {
    text-decoration: none;
}

header .site-name {
    font-size: 1.5em;
    color: #000;
    font-weight: bold;
    
    text-align: left;
}
header .website-name {
    font-size: 1.2em;
    color: gray;
    font-weight: bold;
    text-align: left;
    margin-left : -20px;
    
}
nav {
    margin-top: 0px;
/*    height : 100px*/
}

nav li {
    display: inline-block;
/*    float : center;*/
    margin-right: 18px;
    font-size: 22px;
    font-weight : normal;
/*    margin-left: 10px;*/
/*    margin-top: -40px;*/
/*    line-height: 1.5em;*/
/*    vertical-align : middle;*/
/*    float : right;*/
    
}

nav ul{
    float : right;
    font-size: 1em
}

nav li a.selected {
    text-decoration: underline;
}

h1 {
    margin-bottom: 20px;
    font-size: 2em;
}

h2 {
    margin: 20px 0;
}

p {
    margin-bottom: 10px;
}

a {
    color: inherit;
}

.description {
    margin-bottom: 40px;
}

.item-list > li {
    display: block;
    padding: 20px;
    border-radius: 20px;
    background-color: #eee;
    margin-bottom: 20px;
}

.item-list > li:last-child {
    margin-bottom: 0;
}

.item-list h1 {
    margin-bottom: 15px;
    font-size: 1.3em;
}

.item-list p {
    margin-bottom: 0;
}

.tag-list {
    margin-bottom: 15px;
}

.tag-list li,
.tag {
    display: inline-block;
    background-color: #000;
    color: #ddd;
    padding: 4px 6px;
    border-radius: 5px;
    margin-right: 5px;
}

.tag-list a,
.tag a {
    text-decoration: none;
}

.item-page .tag-list {
    display: inline-block;
}

.content {
    margin-bottom: 40px;
}

.browse-all {
    display: block;
    margin-bottom: 30px;
}

.all-tags li {
    font-size: 1.4em;
    margin-right: 10px;
    padding: 6px 10px;
}

footer {
    color: #8a8a8a;
    
}
img {
    margin-left: auto;
    margin-right: auto;
    display: block;
    max-width: 100%;
    width: 100%;
}
img .bigger{
    margin-left: auto;
    margin-right: auto;
    display: block;
    max-width: 200%;
//    max-height:200%
    
}
hr{
    border-width: 1px 0px 0;
    border-style: solid;
    border-color: gainsboro;
}
hr.distance{
//    border: 0.5px solid black;
}
ul.listing{
    list-style-type: square;
}
li.non-listing{
    list-style-type: none;
}


@media(max-width: 600px) {
    .wrapper {
        padding: 40px 20px;
    }
}

