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

@font-face {
    font-family: 'Crimson Pro';
    font-style: normal;
    font-weight: 400;
    /*src: url('../fonts/crimson-pro-v23-latin/crimson-pro-v23-latin-regular.eot');  IE9 Compat Modes */
    src: local(''),
        url('../fonts/crimson-pro-v23-latin/crimson-pro-v23-latin-regular.eot?#iefix') format('embedded-opentype'),
        /* IE6-IE8 */
        url('../fonts/crimson-pro-v23-latin/crimson-pro-v23-latin-regular.woff2') format('woff2'),
        /* Super Modern Browsers */
        url('../fonts/crimson-pro-v23-latin/crimson-pro-v23-latin-regular.woff') format('woff'),
        /* Modern Browsers */
        url('../fonts/crimson-pro-v23-latin/crimson-pro-v23-latin-regular.ttf') format('truetype'),
        /* Safari, Android, iOS */
        url('../fonts/crimson-pro-v23-latin/crimson-pro-v23-latin-regular.svg#CrimsonPro') format('svg');
    /* Legacy iOS */
}

body {
    font-family: 'Crimson Pro', serif;
    color: seashell;
    background: linear-gradient(to bottom,
            #555 10px,
            #666 10px);
    background-size: 100% 20px;
    margin-left: 20px;
    margin-right: 20px;
}

#container{
    margin: 0 auto;
}

/*  header  */
header{
    background-color: rgba(128, 128, 128);
    padding-top:25px;
    padding-bottom:10px;
}

#vcard{
    display:flex;
    justify-content:space-between;
    line-height: 134%;
}

.logo{
    width: 120px;
    height: 35px;
    left: 0;
}

#contact{
    background-color: grey;
    right: 0;
    padding:0 6px;
}

#navbar{
    padding-top: 10px;
    display: flex;
    justify-content:space-between;
}

nav ul li{
    list-style: none;
    display: inline;
    padding:0 6px;
    border: solid 1px white;
    line-height: 150%;
}


/*  main  */

main{
    padding-top: 10px;
    padding-bottom: 10px;
}

h1{
    line-height: 125%;
    margin-left: 10px;
}

h3{
    line-height: 180%;
}

main p{
    line-height: 175%;
}

section{
    background-color: none;
    height: 220px;
    overflow: hidden;
}

main ul {
    list-style-type: square;
    list-style-position: inside;
    display: block;
    padding: 0 6px;
    line-height: 150%;
}

a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
}

.show{
    height:max-content;
}

#sectionhead{
    display: flex;
    background-color: gold;
}

.fullsection{
    position: relative;
    background-color: none;
    height: 25px;
    width: 25px;
    border-radius: 4px;
    border: solid white 1px;
}

.showBtn{
    background-color: green;
}

.slot{
    position: absolute;
    width: 5px;
    height: 20px;
    top:2px;
    left: 10px;
    border-radius: 2px;
    border: solid white 1px;
}

.handle{
    position: absolute;
    width: 20px;
    height: 3px;
    top:5px;
    left: 2px;
    border-radius: 2px;
    background-color: #fff;
    transition-duration: 0.5s;
}

.handleOut{
    top:20px;
}


.floatleft{
    float:left;
    margin: 5px 10px 10px 0px;
}

.floatright{
    float:right;
    margin: 5px 0px 10px 10px;
}

.clearFix{
    clear:both;
}


/* footer */

.feweb{
    width: 60px;
    left: 0;
    padding-top: 20px;
    padding-bottom: 10px;
}

.copyright{
    text-align: right;
}