* {
    -webkit-tap-highlight-color: transparent;
}
.logoImg{
    margin: 0 0;
    width: 140px;
    height: 140px;

    position: relative;
    top: -2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}
.circle{
    position: absolute;
    /* border-radius: 50%; */
    filter: drop-shadow(0 0 10px #333333);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 10px solid;
    box-sizing: border-box;
}
.green{
    width: 140px;
    height: 140px;
    border: none;

    position: relative;
    top: 0.3rem;
    left: -.5rem;
    transform: rotate(90deg);

    background-image: url('');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;    

    animation: triRotate 1s cubic-bezier(0.19,1.00,0.22,1.00), opa 1s ease-out;
}
@keyframes triRotate {
    from{
        width: 100px;
        height: 100px;
        top: .4rem;
        left: .2rem;
        transform: rotate(0deg);
    }
    to{
        width: 140px;
        height: 140px;
        top: 0.3rem;
        left: -.55rem;
        transform: rotate(90deg);
    }
}
.blue{
    width: 40px;
    height: 40px;
    border: none;

    background-image: url('');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}
.red{
    width: 15px;
    height: 15px;
    border: none;

    background-image: url('');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}
