.card {
    width: fit-content;
    height: fit-content;
    position: absolute;
    align-items: center;
    justify-content: center;
    padding: 25px 25px;
    z-index: 1000;
}


/* for all social containers*/
.socialContainer {
    width: 52px;
    height: 52px;
    margin-bottom: 20px;
    border-radius: 5px;
    background-color: rgb(255, 255, 255);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition-duration: 0.3s;
    z-index: 1000;
}

.socialContainer:active {
    transform: scale(0.9);
    transition-duration: 0.3s;
}

.socialSvg {width: auto; height: 25px;}

.socialContainer:hover {
    background-color: orange;
    color: white;
}

.socialContainer:hover .socialSvg {
    fill: white !important;
}

.socialSvg {fill: orange;}

.socialContainer:hover .socialSvg {
    animation: slide-in-top 0.3s both;
}

@keyframes slide-in-top {
    0% {
        transform: translateY(-50px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}


@media screen and (max-width: 800px) {

    .card {
        width: fit-content;
        height: fit-content;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 25px 25px;
        z-index: 1000;
    }
    
    
    /* for all social containers*/
    .socialContainer {
        width: 52px;
        height: 52px;
        margin-left: 20px;
        border-radius: 5px;
        background-color: rgb(255, 255, 255);
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        transition-duration: 0.3s;
        z-index: 1000;
    }





}


.tooltip-container {
    display: flex;
    position: relative;
    transition: all 0.3s;
    cursor: pointer;
  }
  
  .tooltip {
    position: absolute;
    top: 10%;
    left: 0;
    transform: translateX(-50%);
    padding: 0.3em 0.6em;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s;
    background-color: white;
    border-radius: 12px;
    color: #2835FF;
  }
  
  .tooltip::before {
    position: absolute;
    content: "";
    height: 1em;
    width: 1em;
    bottom: 0.5em;
    left: 0%;
    transform: translate(-24%) rotate(45deg);
    background-color:white;
    z-index: -1;
  }
  
  .tooltip-container:hover .tooltip {
    left: 180%;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  
  