body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}



.numHolders {
    background: aliceblue;
    border: 1px solid black;
    border-radius: 7px;
    font-family: 'Lexend Peta', sans-serif;
    font-weight: 500;
    font-size: 1.1rem;
    /*    min-width: 2.5rem;*/
    width: 2.5rem;
    position: relative;
}

.containerNav {
    font-family: 'Roboto Mono', monospace;
    font-size: 1.1rem;
}

.arrow {
    top: -80%;
}


.line {
    height: 5px;
    background: black;
    width: 100px;
    top: -30%;
}


#btnReset {
    top: -30px;

}

.legendsCard {
    color: white;
    min-height: 8em;
    font-family: 'Lexend Peta', sans-serif;
    border-top: 2px dotted #fff;
    border-bottom: 2px dotted #fff;
    background-image: linear-gradient(rgba(0, 0, 0, 1), rgba(0, 0, 0, 0.75));
    box-shadow: -webkit-box-shadow: 0px 0px 5px 2px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 0px 0px 5px 2px rgba(0, 0, 0, 0.75);
    box-shadow: 0px 0px 5px 2px rgba(0, 0, 0, 0.75);

}

.legendP {
    list-style: none;
    font-family: 'Roboto Mono', monospace;
    font-size: 1.1rem;
    font-weight: 700;

}

.cloneAnimate {
    animation: mergeStart .5s linear forwards;

}

@keyframes mergeStart {
    100% {
        top: 10px;
    }

}

.cloneAnimateDone {
    animation: mergeDone .5s linear forwards;
}

@keyframes mergeDone {
    0% {
        top: 10px;
        opacity: 1;
    }

    100% {
        top: -20px;
        opacity: 0;
    }
}

.algoInfo {
    height: 2rem;
    font-family: 'Roboto Mono', monospace;
    -webkit-box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.75);
    box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.75);
}
