body {
    background-color: white;
    font-family: sans-serif;
    margin: 0;
}

h1 {
    font-size: 1.5em;
    font-weight: 400;
}

p {
    margin: 0;
    text-align: justify;
}

a.alfabet {
    text-decoration: underline;
    color: darkgrey;
    margin-bottom: 1em;
    margin-top: 1em;
}

a.alfabet:hover, a.alfabet:active {
    text-decoration: none;
}

#zijlijn {
    display: block;
    position: fixed;
    left: 75vw;
    top: 3rem;
    color: darkgrey;
}

#woordenboek {
    display: grid;
    grid-template-columns: 1fr;
    margin: auto;
    margin-top: 3rem;
    margin-bottom: 3rem;
    width: 27rem;
}

.grijs {
    color: darkgrey;
}

.afbeelding {
    width: 100%;
    height: auto;
}

.lijstplaatje {
    width: 100%;
    height: auto;
    margin-top: 5px;
}

no-spoiler {
    transition: background-color .5s;
}

no-spoiler:not([data-revealed]) {
    cursor: pointer;
    background-color:pink;
}

@media only screen and (max-width: 500px) {
    #woordenboek {
        width: 90vw;
    }
    }

@media only screen and (max-width: 900px) {
    #zijlijn {
        display: inline;
        position: inherit;
    }
    body {
        margin: 1rem 5vw 0 5vw;
    }
}