html,
body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: sans-serif;
    font-family: 'Roboto Condensed', sans-serif;
}
svg text {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
svg {
    width: 100%;
    height: 100%;
}
#container {
    position: fixed;
    z-index: 1;
    top: 0;
    right: 0;
    left: 350px;
    right: 0;
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: hidden;
    background: rgb(170, 220, 70);
}
#list {
    width: 350px;
    z-index: 2;
    position: relative;
    padding: 0;
    -webkit-box-shadow: 1px 0px 2px rgba(0, 0, 0, 0.3);
    box-shadow: 1px 0px 2px rgba(0, 0, 0, 0.3);
}
#list ul {
    font-size: 1.4em;
    margin-top: 0px;
    margin-bottom: 0px;
    list-style-type: none;
    text-indent: 0;
    padding: 0;
    padding-top: 30px;
    padding-bottom: 30px;
}
#list li {
    cursor: pointer;
    margin-bottom: 0.5em;
}
#list li > a {
    margin-left: 20px;
    margin-right: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
#list li.open {
    background: rgb(170, 220, 70);
    padding-top: 10px;
    padding-bottom: 10px;
}
#list li span {
    display: inline-block;
    width: 1em;
    text-align: right;
    margin-right: 0.7em;
    font-weight: 700;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}
#list .infos {
    width: 100%;
    font-size: 0.8em;
}
#list .latin,
#list .link {
    margin-top: 0.2em;
    margin-bottom: 0;
}
#list .latin {
    font-style: italic;
}
#list .info {
    margin-top: 0.5em;
    margin-bottom: 0.2em;
    font-size: 1.1em;
}
.infos a {
    color: #797979;
    font-size: 0.9em;
    padding-top: 0.4em;
    display: block;
}
#header {
    position: fixed;
    right: 30px;
    top: 25px;
    width: 350px;
    z-index: 10;
    background: #fff;
    -webkit-box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    box-shadow: -1px 1px 2px rgba(0, 0, 0, 0.3);
}
#header > div {
    margin: 30px;
}
#header a {
    color: #797979;
}
#logo {
    width: 50px;
    position: absolute;
    right: 30px;
    top: 25px;
    -webkit-transition: all 1s;
    transition: all 1s;
}
h1 {
    font-size: 80px;
    margin-bottom: 5px;
}
h2 {
    text-transform: uppercase;
    font-weight: normal;
    font-size: 18px;
    letter-spacing: 0.05em;
    margin-bottom: 40px;
}
#layer {
    display: none;
}
@media (max-width:800px) {
    #container {
        position: relative;
        height: 50vh;
        left: 0px;
    }
    #list {
        width: 100%;
    }
    #list ul {
        font-size: 2em;
    }
    #list li {
        margin-bottom: 0.8em;
    }
    #header {
        width: 94vw;
        min-height: 60vh;
        top: 15vh;
        right: 3vw;
        -webkit-box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.7);
        box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.7);
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
    #logo {
        top: 30px;
    }
    #layer {
        display: block;
        position: fixed;
        left: 0;
        top: 0;
        right: 0;
        bottom: 0;
        cursor: pointer;
        background: rgba(0, 0, 0, 0.5);
        z-index: 5;
    }
}
