* {
    box-sizing: border-box;
}

body {
    height: 100dvh;
    margin: 0;
    overflow-x: hidden;
}

.map {
    width: 100%;
    height: 100%;
    background-color: #171819;
}

img {
    width: 512px;
    margin: 0px;
    padding: 0px;
    border: none;
    image-rendering: pixelated;
}

.conbtn {
    color: black;
    padding: 20px;
    font-size: large;
    font-weight: bold;
    position: absolute;
    z-index: 100;
    left: 50px;
    top: 11px;
    text-decoration: none;
    background-color: #ffffff;
    border-radius: 4px;
    border: 1px black solid;
    font-family: Arial, Helvetica, sans-serif;
}

.conbtn:hover {
    background-color: #f6f6f6;
}

.debug {
    position: absolute;
    visibility: hidden;
    top: 0px;
}

.topcontainer {
    font-family: "Minecraft", 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 100000;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: end;
}

.topcontainer__link {
    display: block;
    color: orange;
    background-color: black;
    padding: 8px;
    text-align: center;
    width: 100%;

    animation: pulse 2s infinite;
}

@keyframes pulse {
    from {
        color: orange;
        letter-spacing: 1px;
    }

    50% {
        color: white;
        letter-spacing: 0px;
    }

    to {
        color: orange;
        letter-spacing: 1px;
    }
}

#toptable {
    width: 100%;
}

.topimg {
    width: 16px;
}

.cap {
    background-color: black;
    font-size: larger;
    padding: 16px;
    font-family: 'Minecraft', 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    ;
}

.chunks {
    padding: 0px 4px;
}

tr {
    background-color: rgba(0, 0, 0, 0.26)
}

#coords {
    position: absolute;
    bottom: 0px;
    left: 0px;
    background: black;
    width: fit-content;
    padding: 0px 4px;
    height: 20px;
    color: #f6f6f6;
    z-index: 1000;
    border-radius: 0px 4px 0px 0px;
}

.expandlist {
    display: none;
    width: 35px;
    height: 35px;
    padding: 2px 6px;
    background: #f6f6f6;
    border-radius: 4px;
    color: black;
    font-weight: bolder;
    margin-bottom: 6px;
}

@media only screen and (max-width: 600px) {

    body {
        overflow-x: hidden;
    }

    .expandlist {
        display: block;
    }

    .move {
        position: relative;
        right: -400px;
        transition: .2s all ease-in;
    }
}

@font-face {
    font-family: Minecraft;
    src: url("/assets/fonts/Minecraft.ttf");
}




.main {
    text-align: center;
    padding: 8px;
    font-family: 'Minecraft', 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    background-color: black;
    color: white;
    padding: 24px;
}

.main__title {
    margin: 0;
    font-size: 2.5rem;
    font-weight: bold;
}

.main__content {
    text-align: left;
    font-size: 1.2rem;
    line-height: 1.4;
    max-width: 1300px;
    margin: 0 auto;
    letter-spacing: 0.5px;
}





.footer {
    font-family: 'Minecraft', 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    background-color: black;
    color: white;
}

.flinks {
    max-width: 1300px;
    margin: 0 auto;
    padding: 16px 0;
}

.flinks__title {
    margin: 0;
}

.flinks__list {
    list-style: none;
    padding: 0;
    margin: 8px 0 0 0;
    display: flex;
    gap: 16px;
}
