
.list-box{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 93%;
    padding-top: 50px;
    margin: 100px;
}
.item{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 20%;
    margin-bottom: 70px;
    justify-content: space-around;
}
a{

    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    
}
a img{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    animation: myfirst2 15s infinite linear;
}
@keyframes myfirst2
{
from {transform: rotate(0deg);}
to {transform: rotate(359deg);}
}
a span{
    font-size: 13pt;
    color: #fff;
    padding-top: 10px;
}