@import url('https://fonts.googleapis.com/css2?family=Sofia+Sans:wght@400;500;600;700;800&display=swap');

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Sofia Sans', sans-serif;
    font-weight: 600;
}
html,
body{
    margin: 0;
    padding: 0;
    min-height: 100%;
    background: rgb(0, 0, 0);
}

.container{
    width: 100%;
    min-height: 100vh;
    border-radius: 5px;
    background: darkslategrey;
    border: 5px solid rgb(50, 85, 85);
    box-shadow: inset 0 0 10px 2px rgb(21, 56, 56),
    0 0 10px 2px rgb(21, 56, 56);
}

.social-media{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    width: 100%;
    height: 250px;
    border-radius: 50px;
    background: darkslategrey;
    border: 5px solid rgb(50, 85, 85);
    box-shadow: inset 0 0 10px 2px rgb(21, 56, 56),
    0 0 10px 2px rgb(21, 56, 56);
    display: flex;
    justify-content: center;
    align-items: center;
}
.social-media ul{
    list-style: none;
    width: 700px;
    height: 300px;
    background-color: rgba(245, 222, 179, 0);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
}
.social-media ul li{
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: darkslategray;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 5px solid rgb(50, 85, 85);
    box-shadow: inset 0 0 10px 2px rgb(21, 56, 56),
    0 0 10px 2px rgb(21, 56, 56);
    margin-left: 20px;
    transition: .5s;
}
.social-media ul li::before{
    position: absolute;
    margin-top: 96px;
    width: 0;
    height: 0;
    content: '';
    background: darkslategray;
    z-index: 0;
    opacity: 100;
    transition: .5s;
}
.social-media ul li:hover::before{
    margin-top: 150px;
    width: 100px;
    height: 30px;
    content: '';
    background: darkslategray;
    z-index: 0;
    opacity: 100;
    transition: .5s;
    border-radius: 15px;
}
.social-media ul li:nth-child(1):hover::before{
    transition: .5s;
    animation-delay: 1s;
    animation: pisca-pisca1 1.5s linear infinite;
}
.social-media ul li:nth-child(2):hover::before{
    transition: .5s;
    animation-delay: 1s;
    animation: pisca-pisca2 1.5s linear infinite;
}
.social-media ul li:nth-child(3):hover::before{
    transition: .5s;
    animation-delay: 2s;
    animation: pisca-pisca3 1.5s linear infinite;
}
.social-media ul li:nth-child(4):hover::before{
    transition: .5s;
    animation-delay: 2s;
    animation: pisca-pisca4 1.5s linear infinite;
}
.social-media ul li:nth-child(5):hover::before{
    transition: .5s;
    animation-delay: 2s;
    animation: pisca-pisca5 1.5s linear infinite;
}
.social-media ul li p{
    position: absolute;
    margin-top: 96px;
    opacity: 0;
    font-size: 0;
    transition: .5s;
    z-index: 0;
}
.social-media ul li:hover p{
    margin-top: 150px;
    opacity: 100;
    transition: .7s;
    font-size: 15px;
}

.social-media ul li ion-icon{
    position: absolute;
    font-size: 60px;
    z-index: 10000;
    cursor: pointer;
    color: rgb(21, 56, 56);
    transition: .5s;
}
.social-media ul li:hover{
    transition: .5s;
}
.social-media ul li:nth-child(1):hover{
    border: 5px solid rgb(80, 20, 139);
    box-shadow: inset 0 0 10px rgb(134, 30, 231),
    0 0 10px rgb(133, 23, 236);
}
.social-media ul li:nth-child(2):hover{
    border: 5px solid rgb(28, 20, 139);
    box-shadow: inset 0 0 10px rgb(40, 25, 241),
    0 0 10px rgb(40, 25, 241);
}
.social-media ul li:nth-child(3):hover{
    border: 5px solid rgb(155, 15, 15);
    box-shadow: inset 0 0 10px rgb(236, 23, 23),
    0 0 10px rgb(236, 23, 23);
}
.social-media ul li:nth-child(4):hover{
    border: 5px solid rgb(20, 105, 25);
    box-shadow: inset 0 0 10px rgb(40, 190, 47),
    0 0 10px rgb(40, 190, 47);
}
.social-media ul li:nth-child(5):hover{
    border: 5px solid rgb(15, 88, 148);
    box-shadow: inset 0 0 10px rgb(20, 140, 238),
    0 0 10px rgb(20, 140, 238);
}
.social-media ul li:nth-child(1) ion-icon:hover,
.social-media ul li:nth-child(1):hover p{
    color: rgb(111, 23, 194);
    text-shadow: 0 0 10px rgb(255, 253, 253);
}
.social-media ul li:nth-child(2) ion-icon:hover,
.social-media ul li:nth-child(2):hover p{
    color: rgb(42, 30, 207);
    text-shadow: 0 0 10px rgb(255, 255, 255);
}
.social-media ul li:nth-child(3) ion-icon:hover,
.social-media ul li:nth-child(3):hover p{
    color: rgb(196, 21, 21);
    text-shadow: 0 0 10px rgb(0, 0, 0);
}
.social-media ul li:nth-child(4) ion-icon:hover,
.social-media ul li:nth-child(4):hover p{
    color: rgb(36, 129, 40);
    text-shadow: 0 0 10px rgb(0, 0, 0);
}
.social-media ul li:nth-child(5) ion-icon:hover,
.social-media ul li:nth-child(5):hover p{
    color: rgb(21, 117, 196);
    text-shadow: 0 0 10px rgb(0, 0, 0);
}


