*{
    margin: 0;
    padding: 0;
    list-style: none;
    
}


.icons{
    display: flex;
    height: 100vh;
    align-items: center;
    justify-content: center;
    background: #0a0101;
    text-align: center;
    
}

ul{
    display: flex;
}

ul li{
    position: relative;
    display: block;
    color: #666;
    font-size: 30px;
    height: 60px;
    width: 60px;
    background: #171515;
    line-height: 60px;
    border-radius: 50%;
    margin: 0 20px;
    cursor: pointer;
    transition: 0.25s;
}

ul li:before{
    position: absolute;
    content: '';
    top: 0;
    left: 0;

    /* background: #d35400; */
    height: 100%;
    width: 100%;
    border-radius: 50%;
    z-index: -1;
    transform: scale(0.9);
    transition: 0.5s;
}
 ul li:nth-child(1)::before{
     background: #1da1f2;
 }
 ul li:nth-child(2)::before{
    background: #ff0000;
}
ul li:nth-child(3)::before{
    background: #2867b2;
}
ul li:nth-child(4)::before{
    background: #738adb;
}
ul li:nth-child(5)::before{
    background: #fff;
}



ul li:hover:before{
    filter: blur(3px);
    transform: scale(1.2);
    box-shadow: 0 0 15px #d35400;

}

ul li:nth-child(1):hover:before{
    box-shadow:0 0 15px #1da1f2;
}
ul li:nth-child(2):hover:before{
   box-shadow:0 0 15px #ff0000;
}
ul li:nth-child(3):hover:before{
   box-shadow:0 0 15px #2867b2;
}
ul li:nth-child(4):hover:before{
    box-shadow:0 0 15px #738adb;
 }
 ul li:nth-child(5):hover:before{
    box-shadow:0 0 15px #fff;
 }

ul li:nth-child(1):hover{
    zoom: 1.25;
    color: #26a4f2;
    box-shadow:0 0 15px #1da1f2;
    text-shadow:0 0 15px #1da1f2;
}
ul li:nth-child(2):hover{
    zoom: 1.25;
    color: #ff1a1a;
   box-shadow:0 0 15px #ff0000;
   text-shadow:0 0 15px #ff0000;
}
ul li:nth-child(3):hover{
    zoom: 1.25;
    color: #456cba;
   box-shadow:0 0 15px #2867b2;
   text-shadow:0 0 15px #2867b2;
}
ul li:nth-child(4):hover{
    zoom: 1.25;
    color: #738adb;
   box-shadow:0 0 15px #738adb;
   text-shadow:0 0 15px #738adb;
}

ul li:nth-child(5):hover{
    zoom: 1.25;
    color: #fff;
   box-shadow:0 0 15px #fff;
   text-shadow:0 0 15px #fff;
}



/* ul li:hover{
    color: #ffa502;
    box-shadow: 0 0 15px #d35400;
} */