*{
    margin: 0;
    padding: 0;
    list-style:none;
    box-sizing: border-box;
    font-style:initial;
}
.g-page{
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 0;
    bottom:0;
    left: 0;
    right: 0;
    background-image: linear-gradient(135deg, #7d7ae9 0%, #17a7e5 70%);
}
.g-page h3{
    line-height: 4.5rem;
    font-size: 1.6rem;
    text-align: center;
    font-weight: bold;
    color:#fff;
    flex-shrink: 0;
    flex-grow: 0;
}
.g-page ul{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    flex-shrink: 1;
    flex-grow: 1;
    /* justify-content: space-evenly; */
}
.g-page ul li{
    width: 11rem;
    margin-left: calc(25vw - 8.25rem);
}
.g-page ul li:not(:empty){
    background: rgba(255,255,255,0.15);
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    text-align: center;
    color: #fff;
}
.g-page ul li .m-name{
    font-size: 1.6rem;
    font-weight: bold;
}
.g-page ul li .m-level{
    font-size: 1.4rem;
}
.g-page ul li .m-content{
    font-size: 1.2rem;
}
.g-page ul li img{
    width: 4rem;
    margin: 1rem 0;
}