*{
    margin: 0;
    padding: 0;
    font-family: "Schoolbell", sans-serif;
}
body {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    /*background-position: center;
    background-size: cover;
    background-image: url(images/cafetiere_origine.png);*/
    }

    
.game_infos {
    font-size: 25px;
    background-color: #e5fc3a;
    border: 1px solid #000;
    display: flex;
    justify-content: space-between;
    padding: 5px 20px 5px 20px;    
    margin-bottom: 20px;
}

.container {    
    height: 400px;
    width: 500px;
    border: 10px solid #483521;
    cursor: crosshair;
    position: relative;
    font-size: 50px;
    color: #e5fc3a;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    /*background-color: #7b3c0c;*/
    background-image: url(images/fond.jpg);
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    overflow: hidden;
}

button{
    padding: 10px 20px;
    margin-bottom: 20px;
    font-size: 30px;
    background-color: #57a914;
    border: 0;
    color: #482020;
    border-radius: 6px;
    cursor: pointer;
}

#target {
    height: 60px;
    width: 60px;
    position: absolute;
    transition: 0.25s;
    animation: animateTarget 5s infinite;
}

@keyframes animateTarget {
    /*to {
        transform: translateY(-200px) rotate(180deg);*/
        0% {
            transform: translateX(100px) rotate(90deg);
        }
        25% {
            transform: translateY(100px) rotate(45deg) scale(0.5);
        }
        50% {
            transform: translateX(-50px) rotate(-30deg);
        }
        100% {
            transform: translateY(-100px) rotate(-105deg);
        }
    }
