.social-media-reveal{
    position: fixed;
    z-index: 99;
    bottom: 145px;
    right: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;

    a{
        z-index: 2;
        transition: all 0.3s ease-in-out;
        opacity: 0;

        i{
            margin-bottom: 0 !important;
        }

        &:nth-child(1){
            transform: translateY(210px);
        }
        &:nth-child(2){
            transform: translateY(190px);
        }
        &:nth-child(3){
            transform: translateY(124px);
        }
        &:nth-child(4){
            transform: translateY(60px);
        }
    }

    button{
        z-index: 5;
        transform: rotate(0);
        transition: all 0.3s ease;
    }

    .social-media-reveal-btn,a{
        background-color: white;
        color: black;
        font-weight: 600;
        font-size: 2rem;
        font-size: 20px;
        width: 3rem;
        height: 3rem;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50rem;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        border: none;
        cursor: pointer;
        text-decoration: none;

        i{
            margin-bottom: 5px;
        }
    }
}