* {
    margin: 0;
    padding: 0;
    list-style: none;
    box-sizing: border-box;
    color: #4e4e4e;
    text-decoration: none;
    outline: none;
    font-family: sans-serif;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-size: 62.5%;
    background-image: linear-gradient(135deg, #F97794 10%, #623AA2 100%);
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-content: center;
    min-height: 100vh;
    overflow-x: hidden;
}

.wrapper {
    margin: 0 auto;
}

.splash {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #4e4e4e;
    display: flex;
    justify-content: center;
    align-content: center;
    flex-wrap: wrap;
}

.splash h2 {
    font-size: 2rem;
    color: whitesmoke;
    cursor: default;
}

.banner {
    width: 100%;
    height: 2.5rem;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(255, 255, 255, 0.8);
    text-align: center;
}

.banner h2 {
    font-size: 1rem;
    /* color: whitesmoke; */
    cursor: default;
    line-height: 2.5rem;
}

.footer {
    text-align: center;
}

.footer a {
    color: whitesmoke;
    word-break: keep-all;
    font-size: 0.9rem;
    height: 2rem;
    line-height: 2rem;
    background-size: 2rem 2rem;
    background-repeat: no-repeat;
    display: inline-block;
    padding: 0 0 0 2.5rem;
    margin: 0.25rem;
}

.footer .copyright {
    padding: 0;
}

.footer .icp {
    background-image: url(/image/icp.svg);
}

.footer .azure {
    background-image: url(/image/azure.svg);
}

.d-none {
    display: none;
}

@media(max-width:940px) {
    .banner {
        height: 2rem;
        position: absolute;
    }

    .banner h2 {
        line-height: 2rem;
    }
}