* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: "Roboto", sans-serif;
    background-color: #f7f7f7f7;
}
#container-ball {
    width: 35%;
    height: 45%;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -40%);
    border-radius: 15px;
    background-color: deepskyblue;
    position: absolute;
    overflow: hidden;
    box-sizing: content-box;
    border: 0.5px solid #d0a2a296;
}
.box_ball {
    display: flex;
    align-items: center;
    justify-content: center;
}
.buttons_header {
    height: 55px;
    width: 100%;
    text-align: center;
}
.target {
    position: absolute;
    width: 50px;
    height: 50px;
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.button-level {
    margin: 10px;
    padding: 10px 20px;
    background-color: blue;
    color: white;
    border-radius: 5px;
    cursor: pointer;
}
.fa-solid,
.fas {
    font-size: 60px;
}
#timer {
    font-size: 40px;
    line-height: 40px;
    background-color: blanchedalmond;
    margin: auto;
}
#timer::before {
    content: "Time:";
    padding-right: 10px;
}
#box_points::after {
    content: "Points";
    padding-left: 10px;
}
#box_points {
    margin-top: 8.4px;
    font-size: 20px;
}
@media screen and (max-width: 500px) {
    #container-ball {
        width: 90%;
        height: 76%;
        top: 51%;
        left: 50%;
        transform: translate(-50%, -40%);
        border-radius: 15px;
        background-color: deepskyblue;
        position: absolute;
        overflow: hidden;
        box-sizing: content-box;
        border: 0.5px solid #d0a2a296;
    }
    .modal {
        padding: 10px;
        width: 89%;
    }
}
