.white-bordered {
    /* border: 5px solid rgb(255, 255, 255); */
}

.bunny-container {
    position: absolute;
    top: 0;
    left: 0;
    /* border: 1px solid white; */
}

.target-bunny {
    position: relative;
    width: 50px;
}

.svg-points {
    display: none;
    position: relative;
    font-size: .1rem;
    top: 0;
    left: 0;
    z-index: 2;
}

.svg-points-hit {
    display: block;
    font-size: 1rem;
    color: gold;
    animation: larger-burst .5s ease forwards;
}

.svg-points-hit-red {
    color: red;
}

@keyframes larger-burst {
    0% {
        font-size: 1rem;
        ;
        opacity: .8;
    }

    20%, 50% {
        font-size: 2.5rem;
        ;
        opacity: 1;
    }

    100% {
        font-size: 1rem;
        ;
        opacity: 0;
    }
}


#shootButton, #shootButton:focus, #shootButton:active, #shootButton:hover, #shootButton:disabled {
    position: absolute;
    /* to stop it showing square when clicked */
    outline-style: dotted;
    text-align: center;
    font-size: 0.8em;
    padding: 10px;
    background-color: red;
    color: black;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    width: 100px;
    height: 100px;
    border: 5px solid white;
}

#shootButton:disabled {
    background-color: transparent;
    opacity: 20%;
    border: none;
    outline: none;
}

#shootButton:active, #shootButton:focus {
    background-color: green;
    /* Or set to the specific color you want */
}

#shootButton div.arrow {
    /* width: 0;
    height: 0; */
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 20px solid black;
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    /* border: 2px solid white; */
}

.point {
    position: absolute;
    width: 1px;
    height: 1px;
    top: 0;
    left: 0;
    /* border: 2px solid white; */
    /* must have transform to use getBoundingClientRect in js */
    transform: rotate(0deg);
}

.bullet {
    width: 10px;
    height: 10px;
    background-color: rgb(255, 255, 255);
    position: absolute;
    border-radius: 40%;
    border: 2px solid black;
    top: 0;
    left: 0;
}