/* simple reset rule to set page defaults*/
* {
    margin: 0;padding: 0;border: 0;
    box-sizing: border-box;
}

:root {
    font-size: 62.5%; /*16px *.625= 10px*/

    --color-bg1: #EEE5E9;
    --color-bg2: #EFC88B;
    --color-fn1: olive;
    --color-accent1: #cf5c36;
    --border:#86879c;
    --text: rgb(200, 200, 221);
}

body{
    background-color: var(--color-bg2);
    color: var(--color-fn1);
    font-size: 1.4rem;
}
body {
    background-image:url("/images/pic1.jpg");
    background-position: center;
    margin: 20px;
}

div header{
    text-align: center;
}

div header h1{
    font-size:70px;
    color: var(--text);
}

div header h2{
    font-size:40px;
    text-align: left;
    color: var(--text);
    
}

#zen-summary, #zen-preamble{
    background-color: rgba(44, 44, 49, 0.7);
    border-radius: 10px;
    padding: 2px;
    color: var(--text);
    font-weight: bold;
}

#zen-preamble{
    border-bottom: var(--border) solid;
}

#zen-summary{
    border-top: var(--border) solid;
    width: 30%;
    margin-bottom: -3px;
}

section div{
    width: 37%;
    border: var(--border) solid;
}

p {
    font-size: 18px;
    margin: 5px;
    font-weight: bold;
    text-indent: 15px;
}

h3{
    font-size: 22px;
}

#zen-supporting div{
    display: inline-block;
    width: 49.5%;
    vertical-align: text-top;
}
#zen-supporting{
    max-width: 100%;
    text-align: center;
    text-align: left;
    color: var(--text);
    background-color: rgba(44, 44, 49, 0.7);
    border: var(--border) solid;
    border-radius: 10px;
    margin-top: -4px;
    float:left;
    width: 50%;
}

#zen-supporting h3{
    text-align: center;
    border-radius: 10px;
}

#zen-supporting footer{
    text-align: center;
    margin-top: 10px;
    font-weight: bold;
}

#zen-supporting footer a{
    background-color:var(--border);
    width: 50px;
    height:50px;
    display: inline-block;
    text-align: center;
    padding-top: 17px;
    border-radius: 100%;
    color: rgb(22, 22, 22);
    text-decoration: none;
    font-weight: bolder;
    font-size: 15px;
    margin-bottom: 4px;
    margin-top: -4px;
    margin-left: 2px;
    margin-right: 2px;
}

aside{
    text-align: center;
    color: var(--text);
    font-weight: bolder;
    font-size: 22px;
    transform: translate(0,-350px);
    float:right;
}

aside div{
    max-width: 100%;
    display:inline-block;
    vertical-align: text-top;
    padding: 20px;
}

body a{
    color: wheat;
}

aside ul{
    list-style-type:georgian;
    text-align: left;
}
abbr{
    color: wheat;
}


