html {
    min-height: 100%;
    overflow: hiddenl;
    background: url(images/2002860_A_ecommfullsize.jpg);
    font-size: 10px;
    font-family: 'Bangers';
}

body {
    height: calc(100vh - 8em);
    padding: 4em;
    color: black;
    font-family: 'Staatliches', cursive;

}

img {
    width: 80%;
}

.line {
    position: relative;
    top: 50%;
    width: 20em;
    margin: 0 auto;
    border-right: 2px solid rgba(255, 255, 255, 0.75);
    font-size: 500%;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    transform: translateY(-50%);
}

/* animatie */

.anim-typewriter {
    animation: typewriter 4s steps(30) 1s 1 normal both,
    blinkTextCursor 300ms steps(20) infinite normal;
}

@keyframes typewriter {
    from {
        width: 0;
    }
    to {
        width: 10em;
        height:
    }
}

@keyframes blinkTextCursor {
    from {
        border-right-color: rgba(255, 255, 255, 0.75);
    }
    to {
        border-right-color: transparent;
    }
}


.post {
    max-width: 30rem;
    margin: 2rem;
    float: left;
    display: flex;
    flex-direction: row;
}

a {
    font-size: 4rem;
    text-decoration: none;
    color: #1e1f23;
    text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.4);
}


/* code voor de hover */

section{
      font-size: 4rem;
}
.container {
    position: absolute;
    top: 20%;
    left: 30%;
    transform: translate(-50%, -50%);

}

a{
    background-size: 200% auto;
     background-image: linear-gradient(to right, rgba(255, 255, 255, 0)50%, #fee603 50%);
    transition: background-position 0.5s ease-out;
}

a:hover {
    background-position: -100% 0;
}

.terug{
    margin-bottom: 2em;
}

