body{
    width: 100%;
    max-width: 100%;
}

.wikibtn
{
    width: 150px;
    height: 50px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 15px;
    border: 1px solid red;
    line-height: 50px;
    box-shadow: 0px 0px 4px rgb(255, 255, 255);
}
.wikibtn a{
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: white;
}
.wikibtn:hover{
    transition: 0.6s;
    box-shadow: 0px 0px 20px rgb(255, 255, 255);
}
.wikibtn a:hover{
    transition: 0.6s;
    color: rgb(160, 9, 9);
}

.container{
    margin-bottom: 15px;
}

ul li a{
    display: table-cell;
    height: 150px;
    width: 200px;
    margin-left: auto;
    margin-right: auto;
    background-color: rgba(49, 49, 49, 0.61);
    text-decoration: none;
    color: white;
    box-shadow: 0px 0px 10px red;
    border: 2px solid red;
    border-radius: 25% 10%;
    vertical-align: middle;
}
ul li a:hover{
    z-index: 100;
    vertical-align: middle;
    transition: 0.3s;
    color: rgb(13, 219, 255);
    font-weight: bold;
    box-shadow: 0px 0px 20px rgb(14, 221, 14);
    border-radius: 50% 20% / 10% 40%;
    border: 2px solid rgb(14, 221, 14);
}
ul{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
}
ul li{
    display: table;
    list-style-type: none;
    margin: 5px;
    align-items: center;
    align-self: center;
    height: 150px;
    width: 200px;
}