body {
    justify-content: center;
    align-items: center;
    margin: 0;
    background-color: #242B47;
    text-align: center;
}

h1 {
    font-family: Bungee, serif;
    font-style: normal;
    font-size: 5em;
    color: white;
    margin-bottom: auto;
}

p {
    font-family: "Hind", serif;
    font-style: normal;
    font-size: 1.5em;
    color: white;
}

#q {
    width: 250px;
    height: 30px;
    padding: 7px;
    border-radius: 5px;
    font-family: "Hind", serif;
}

#button {
    padding: 10px;
    margin: 20px;
    border-radius: 5px;
    border: 0;
    background-color: #4BD0D7;
    width: 80px;
}

#button:hover {
    background-color: #019b9b;
    color: white;
}

img {
    padding: 0px;
    width: 400px;
    align-content: center;
}

#ball {
    position: relative;
    margin: 20px auto;
}

#response {
    font-family: hind;
    color: #4BD0D7;
    font-size: 1.5em;
    width: 150px;
    justify-content: center;
    position: absolute;

    /*    the lower the number the higher the position*/
    top: 48%;
    left: 50%;
    /*    Start code from friend*/
    transform: translate(-50%, -50%);
    /*    end code from friend*/
}

@keyframes shake-animation {
    0% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-15px);
    }

    50% {
        transform: translateX(15px);
    }

    75% {
        transform: translateX(-10px);
    }

    100% {
        transform: translateX(0);
    }
}

.shake {
    animation: shake-animation 0.5s;
}
