/* CSS Document */

body {
    font-family: Arial, sans-serif;
    text-align: center;
    margin-top: 60px;
}
h1 {
    color: deeppink;
}
#ball {
    width: 350px;
    height: 350px;
    background: hotpink;
    border-radius: 50%;
    margin: 20px auto;
    display: flex;
    justify-content: center;
    align-items: center;
}
#middle {
    width: 180px;
    height: 180px;
    background: rgb(255, 255, 255);
    border-radius: 50%;
    margin: 20px auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

#answer {
    color: hotpink;
    width: 150px;
    font-size: 20px;
    font-weight: bold;
}
#questionInput {
    height: 20px;
    width: 300px;
    padding: 10px;
    font-size: 16px;
    border: 2px solid hotpink;
    border-radius: 5px;
    margin-top: 20px;
}
.shakebtn {
    height: 45px;
    background-color: hotpink;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    transition: all ease 0.3s;
}

.shakebtn:hover {
    background-color: deeppink;
    transition: all ease 0.3s;
}

.shakebtn:active {
    transform: scale(0.95);
    transition: all ease 0.1s;
}
