ul li a{
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    height: 100%;

    font-weight: bold;
    font-size: 18px;

    color: white;
    text-decoration: none;

    margin-bottom: 5px;
}

ul li a img{
    margin-left: auto;
    margin-right: auto;
    max-height: 100px;
    max-width: 100px;

    margin-bottom: 10px;
    border-radius: 50px;
}
ul li a:hover{
    transition: 0.2s;
    color: rgb(16, 96, 216);

    font-weight: bold;
    font-size: 18px;
}
ul{
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;

    display: flex;
    padding: 0;
    
    width: 100%;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;

    list-style-position: unset;
    list-style: none;
}
ul:hover{
    list-style-type: none;
}

ul li{
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;

    margin: 5px;
    padding: 0px;
    width: 150px;
    min-height: 150px;
    height: auto;
    border-radius: 10px;
    background: rgba(43, 43, 43, 0.815);

    box-shadow: 0px 0px 10px 5px red;

    animation: card_anim 15s infinite;
}

.page{
    display: flex;
    flex-direction: column;

    margin-top: 50px;
    height: auto;
    min-height: 100px;
    border-top: 1px solid white;
    /* width: 410px; */
    width: 95%;
    max-width: 99%;
    border-radius: 20px;
    margin-left: auto;
    margin-right: auto;
    padding: 5px;
    background-color: rgba(15, 15, 15, 0.568);
}

@-webkit-keyframes card_anim{
    0%{
        box-shadow: 0px 0px 10px 5px red;
    }
    12.5%{
        box-shadow: 0px 0px 10px 5px rgb(255, 145, 0);
    }
    25%{
        box-shadow: 0px 0px 10px 5px yellow;
    }
    37.5%{
        box-shadow: 0px 0px 10px 5px rgb(0, 235, 0);
    }
    50%{
        box-shadow: 0px 0px 10px 5px cyan;
    }
    62.5%{
        box-shadow: 0px 0px 10px 5px rgb(0, 116, 248);
    }
    75%{
        box-shadow: 0px 0px 10px 5px rgb(0, 0, 248);
    }
    87.5%{
        box-shadow: 0px 0px 10px 5px rgb(238, 6, 238);
    }
    100%{
        box-shadow: 0px 0px 10px 5px rgb(255, 1, 1);
    }
}