body {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: Arial, Helvetica, sans-serif;
    background: whitesmoke;
    gap: 3rem;
}

.link {
    display: flex;
    align-items: center;
    color: white;

    .lbl {
        display: flex;
        align-items: center;
        border-radius: 9999px;
        background: orangered;
        height: 2.5rem;
        padding: 0 1rem;
        z-index: 1;
    }

    .ico {
        border-radius: 100%;
        background: orangered;
        height: 2.5rem;
        z-index: 0;
        width: 2.5rem;
        display: flex;
        justify-content: center;
        align-items: center;
        transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    }

    &:hover .ico {
        translate: 0.5rem 0;
        rotate: 45deg;
    }
}

.panel {
    display: flex;
    align-items: center;
    flex-direction: column;
    color: white;
    
    .lbl {
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 1rem;
        background: orangered;
        width: 6rem;
        height: 4rem;
        padding: 0 1rem;
        z-index: 1;
    }
    .ico {
        border-radius: 100%;
        background: orangered;
        height: 2.5rem;
        z-index: 0;
        width: 2.5rem;
        display: flex;
        justify-content: center;
        align-items: center;
        transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
        translate: 0 -2rem;
    }

    &:hover .ico {
        translate: 0;
        rotate: 45deg;
    }

}