* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;

}

img {
        image-rendering: auto;
        image-rendering: crisp-edges;
        image-rendering: pixelated;
        image-rendering: -webkit-optimize-contrast;
}

@font-face {
    font-family: kirsch;
    src: url(../asset/font/minecraft/Minecraft.ttf);
}

body {
    font-family: kirsch;
    font-size: 15px;
    color: #c0c8cf;
    background-color: #1c2023;
    background-image: url("/asset/bg/flagwaver_dark.png");
    z-index: 1;
}

.header {
    display: flex;
    align-items: center;
    overflow: auto;
    
    padding: 10px;
}

.content {
    position: fixed;
    left: 0%;
    align-items: flex-start;
    display: flex;
    justify-content: left;


    width: 100%;
    max-width: 700px;
}

.charmenu {
    text-align: center;
    width: 100%;
    background-color: #252a2d;
}

.charlist {
    display: flex;
    justify-content: flex-start;
    gap: 10px;
    overflow: auto;
}


.page {
    font-size: 16px;
    justify-content: center;
    flex-direction: column;
    display: flex;
    align-items: center;
    transition:
    cubic-bezier(0.075, 0.82, 0.165, 1)
            background-color 1s;
    animation-delay: 0ms;
    padding: 3% 0;
    height: 100%;
    max-height: 12%;
    width: 100%;
    max-width: 20%;

    background-color: #2e3438;
}

.page:hover {
    color: #1c2023;
    background-color: #c2bf88;
}

.border {
    margin: 10px;
    padding: 10px;
    border-style: double;
    border-width: 10px;
    height: 97%;

    border-color: #3a4044;
}

/*phone thingamajig LMAOOO*/
@media screen and (max-width: 670px) {

    .header {
        height: 40px;
    }

    body {
        background-position: 90%;
        background-repeat: no-repeat;
    }
    
    .content {
    z-index: inherit;
    position: fixed;
    top: 0%;
    right: 0%;
    bottom: 0%;
    align-items: center;
    display: flex;
    justify-content: center;

    margin: 1% auto;

    width: 100%;
    height: 100%;
    gap: 10px;
}

}