* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    display: flex;
    flex-direction: column;
    height: 100vh;
    justify-content: center;
    align-items: center;
}

button {
    padding: 10px 15px;
    margin-right: 15px;
    border: 0;
    border-radius: 10px;
    cursor: pointer;
    background-color: blue;
    color: whitesmoke;
    font-weight: bold;
    font-size: 2rem;
}

h1 {
    
    margin-bottom: 0.5rem;
    font-size: 2rem;
    color: green;
}

div {
    font-size: 3rem;
}
.bild {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
}

img {
    margin: 0 auto;
}

#game {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 780px) {
    button {
        font-size: 0.7rem;
    }

    img {
        width: 80%;
    }
}

