html {
    margin: 0 auto;
    max-width: 800px;
    line-height: 1.5;
    font-size: 1.35em;
    font-family: 'Crimson Text', serif;
    color: #fff;
    background-color: #000;
}

body {
    padding: 0em 1em;
    line-height: 1.5;
    font-size: 1.35em;
}

a {
    color: #fff;
}

.light a {
    color: #000;
}

h1,
h2,
h3,
h4 {
    font-family: 'Roboto', serif;
    font-weight: 100;
}

.light {
    background-color:#fff;
    color: #000;
    position: relative;
}
.light:before {
    content:"";
    background-color:#fff;
    position: absolute;
    height: 100%;
    width: 4000px;
    left: -2000px;
    z-index: -1;
}

.xl {
    color: #000;
    background-color: #fff;
    font-weight: 700;
    padding-left: 10px;
    padding-right: 10px;
}

.gr {
    background-color: #00b300;
}

.rd {
    background-color: #dd0000;
}

/*
63.4
*/
.or {
    background-color: #FF6C0C;
}

.gy {
    background-color: #BBBBBB;
}

.ye {
    background-color: #dddd00;
}

.menuicon {
    position: fixed;
    top: 40px;
    right: 50px;
    background-color: #000;
    font-size: 70px;
}

@media (max-width: 730px) {
    body {
        padding: 0em 0em;
        font-size: 0.9em;
    }

    .menuicon {
        top: unset;
        bottom: 10px;
        right: 10px;
    }

}

details>summary {
    list-style: none;
}

details>summary::-webkit-details-marker {
    display: none;
}

.menuitem {
    font-family: 'Roboto', serif;
    font-weight: 100;
    font-size: 2em;
    text-decoration: none;
    padding: 5px;
    background-color: #000;
}

.menuitem:hover {
    text-decoration: underline;
}

@keyframes blur {
    from {
        filter: blur(0);
    }

    to {
        filter: blur(5px);
    }
}

details {
    position: fixed;
    top: 150px;
    text-align: right;
    transition: right 0.3s ease;
    overflow: hidden;
    z-index: 10;
}

details:not([open]) {
    right: -300px;
}

details[open] {
    right: 10px;
}

details[open]+.content {
    animation: blur 0.3s forwards;
}