/* Copyright 2024 Max Körner */
#mx{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) ;
    display: flex;
    width:fit-content;
    margin: auto;
    padding: 0.1em;
    font-weight: bold;
    font-size: 72;
    opacity: 1;
    color: rgb(38, 38, 38);
    z-index: 100;
}

#halo{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) ;
    display: flex;
    z-index: 120;
    width: 90vw;
    height: 0vh;
    background-color: black;
    opacity: 0.5;
    border-radius: 50%;
    box-shadow: 0px 0px 100vh 4vh white;
    z-index: 10;

}

.element{
    position: absolute;
    border-radius: 50%;
    background-color: rgb(5, 5, 5);
    transition: all ease 1s;
    z-index: 20;
}

.remove{
    background-color: rgb(254, 254, 254);
    scale:5;
    /* transform: scale(50); */
    border: 1px solid white;
    opacity: 0;
}