@import url('https://fonts.googleapis.com/css2?family=Exo+2:ital,wght@0,100;0,200;0,300;0,400;0,500;1,100;1,200;1,300;1,400;1,500&display=swap');

:root{
    --bg-primary: #3876BF;
    --bg-secondary: #4D4C7D;
    --bg-red: #D80032;
    --bg-dark: #5e6e88;
    --bg-warn: #FBDA61;
    --bg-gradient: linear-gradient(45deg, #FBDA61 0%, #FF5ACD 100%);
}

* {
    font-family: 'Exo 2', sans-serif;;
}
/* Page Interface Design */
html, body{
    width: 100%;
    height: 100%;
    margin: unset;
    padding: unset;
}

body{
    background-color: #3d3d3d;
    background-image: linear-gradient(160deg, #3d3d3d 0%, #1d1d1d 100%);
}

main{
    width: 100%;
    height: 100%;
    display: flex;
    flex-flow: column wrap;
    align-items: center;
    justify-content: center;
}
#wrapper{
    width: 100%;
    max-width: 500px;
}
/* Page Title */
h2.title{
    font-weight: bold;
    color:#fff;
    letter-spacing: 0.3px;
    text-align: center;
}

/* Social Media Links Styles */

/* Social Media Links or Button Wrapper */
#soc-med-links{
    display: flex;
    flex-flow: row wrap;
    min-width: 100px;
    max-width: 100%;
    column-gap: 10px;
    justify-content: space-between;
}

/* Social Media Link Item */
#soc-med-links .soc-med-links-item {
    box-shadow: 0px 3px 3px #0000003a;
    background-color: #fff;
    border-radius: 2rem;
    transition: all .3s ease-in-out;
}

/* Social Media Link Item anchor tag Element */

#soc-med-links .soc-med-links-item a{
    text-decoration: none !important;
    color:#352F44 !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Social Media Link Item Icon/Logo Element */
#soc-med-links .soc-med-links-item .soc-med-links-item-icon {
    height: 50px;
    width: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid #e8e8e8;
    background-color: #fff;
    border-radius: 50% 50%;
    font-size: 2rem;
}

/* Social Media Link Item Text Element */
#soc-med-links .soc-med-links-item .soc-med-links-item-text {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .5px;
    overflow: hidden;
    width: 0;
}

/* Social Media Link Icon when Hovered */
#soc-med-links .soc-med-links-item:hover .soc-med-links-item-icon{
    position: relative;
    top: 1px;
    left: 1px;
    border:unset;
}

/* Social Media Link when Hovered Colors */
#soc-med-links .soc-med-links-item:hover .soc-med-links-item-icon.bg-primary{
    background-color: var(--bg-primary);
    color: #fff;
}
#soc-med-links .soc-med-links-item:hover .soc-med-links-item-icon.bg-secondary{
    background-color: var(--bg-secondary);
    color: #fff;
}
#soc-med-links .soc-med-links-item:hover .soc-med-links-item-icon.bg-dark{
    background-color: var(--bg-dark);
    color: #fff;
}
#soc-med-links .soc-med-links-item:hover .soc-med-links-item-icon.bg-red{
    background-color: var(--bg-red);
    color: #fff;
}
#soc-med-links .soc-med-links-item:hover .soc-med-links-item-icon.bg-gradient{
    background-color: var(--bg-warn);
    background-image: var(--bg-gradient);
    color: #fff;
}

/* Adding animation when hovering */
#soc-med-links .soc-med-links-item:hover .soc-med-links-item-text{
    animation: expandingAnimation .5s ease forwards;
}

/* Expanding the Link Text Animantion */

@keyframes expandingAnimation {
    0%{
        width: 0;
        margin: 0px 0px;
    }
    100%{
        width: auto;
        margin: 5px 10px;
    }
}