.bke-container {
    display: flex;
    height: 100%;
    margin: 0;
    align-items: center;
    justify-content: center;
    -ms-flex-direction: column;
    flex-direction: column;
}

.bke-title {
    align-self: flex-start;
    -ms-flex: 1;
    flex: 1;
    max-height: 150px;
    margin: auto;
}

.bke-speelbord {
}

.bke-knoppen {
    -ms-flex: 1;
    flex: 1;
}

.bke-footer {
    background-color: rgba(230, 230, 230, 0.5);
    text-align: center;
    align-self: flex-end;
    align-items: flex-end;
    margin: auto;
    width: 100%;
}


#speelbord {
    display: flex;
    display: -ms-flexbox;
    display: -moz-flexbox;
    display: -o-flexbox;
    display: -webkit-flexbox;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    height: 300px;
    width: 300px;
    -webkit-animation-duration: 2s;
    -moz-animation-duration: 2s;
    -o-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-name: fadeInFromNone;
    -moz-animation-name: fadeInFromNone;
    -o-animation-name: fadeInFromNone;
    animation-name: fadeInFromNone;
}

.leegvakje, .computerzet, .gebruikerzet, .computerwin, .gebruikerwin {
    float: left;
    -ms-flex: 1 auto;
    flex: 1 auto;
    height: 100px;
    width: 100px;
    background-image: url("figuurtjes.png");
    background-position: 0 0;
}

.computerzet, .computerwin {
    background-position: 0 100px;
}

.gebruikerzet, .gebruikerwin {
    background-position: 0 200px;
}

.gebruikerwin {
    -webkit-animation-name: rotate;
    -webkit-animation-duration: 2s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    -moz-animation-name: rotate;
    -o-animation-name: rotate;
    animation-name: rotate;
    -moz-animation-duration: 2s;
    -o-animation-duration: 2s;
    animation-duration: 2s;
    -moz-animation-iteration-count: infinite;
    -o-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;
    -o-animation-timing-function: linear;
    animation-timing-function: linear;
}

.computerwin {
    -webkit-animation-name: rotate;
    -webkit-animation-duration: 2s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    -moz-animation-name: rotate;
    -o-animation-name: rotate;
    animation-name: rotate;
    -moz-animation-duration: 2s;
    -o-animation-duration: 2s;
    animation-duration: 2s;
    -moz-animation-iteration-count: infinite;
    -o-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;
    -o-animation-timing-function: linear;
    animation-timing-function: linear;
}

@-webkit-keyframes rotate {
    from {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-moz-keyframes rotate {
    from {
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    to {
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-webkit-keyframes fadeInFromNone {
    0% {
        display: none;
        opacity: 0;
    }

    1% {
        display: block;
        opacity: 0;
    }

    100% {
        display: block;
        opacity: 1;
    }
}

h1 {
    color: whitesmoke;
}

button {
    float: left;
    margin: 20px;
    width: 300px;
    height: 100px;
    border-radius: 10px;
    background-color: rgba(34, 139, 34, 0.7);
    color: whitesmoke;
    box-shadow: rgba(10, 10, 10, 0.4)10px 10px 5px;
    -webkit-animation-duration: 1s;
    -moz-animation-duration: 1s;
    -o-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-name: fadeInFromNone;
    -moz-animation-name: fadeInFromNone;
    -o-animation-name: fadeInFromNone;
    animation-name: fadeInFromNone;
}


body, html {
    height: 100%;
    margin: 0;
}

body {
    background-image: url("grass_background.png");
    background-repeat: repeat-x repeat-y;
}
