html {
    font-family: "Trebuchet MS", "Optima", Arial, sans-serif;
    text-align: center;
    color: #957db7;
}

.play-store-badge {
    width: 100%;
}

.app-store-badge {
    width: 88%;
    margin: 6%;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

body {
    background-color: #050459;
    background-image: url('dragon-megaliths-banner-4096x1152.png');
    background-repeat: no-repeat;
    background-size: 100vw 28.125vw;
    -webkit-background-size: 100vw 28.125vw;
    -moz-background-size: 100vw 28.125vw;
    -o-background-size: 100vw 28.125vw;
    margin-top: 24vw;
    font-size: 2rem;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}

h1 {
    font-size: 4rem;
}
h2 {
    font-size: 2rem;
}

a {
    text-decoration: none;
    color: #ccbb50;
}

p {
    max-width: calc(min(90vw, 1440px));
    margin-left: auto;
    margin-right: auto;
}

.gamegrid {
    display: grid;
    gap: 25px;
    margin: auto;
    justify-content: center;
    grid-template-columns: repeat(auto-fit, minmax(128px, 256px));
}

.game {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.thumbnail {
    width: 100%;
    height: auto;
    border-radius: 25%;
    image-rendering: pixelated;
    margin-bottom: 15px;
}

.neutral {
    text-align: justify;
    color: #000000;
}

#lightbox {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.6);
}

#lightbox img {
    display: block;
    margin: auto;
    width: 100%;
    height: 100svh;
    object-fit: contain;
    image-rendering: pixelated;
}

#lightbox:hover {
    cursor: zoom-out;
}

.screenshot {
    width: 46%;
    image-rendering: pixelated;
}

.screenshot:hover {
    cursor: pointer;
}

.breadcrumb {
    text-align: left;
    margin: auto;
}

@media only screen and (orientation:landscape) {
    [class="play-store-badge"] {
        width: 400px;
    }
    [class="app-store-badge"] {
        width: 352px;
        margin-left: 24px;
        margin-right: 24px;
        margin-top: 17px;
        margin-bottom: 17px;
    }
    body {
        width: 60%;
        margin-top: 16vw;
        font-size: 1.2rem;
    }

    .screenshotgrid {
        width: 800px;
        margin: auto;
    }

    .screenshot {
        width: auto;
    }
    .gamegrid {
        gap: 75px;
        grid-template-columns: repeat(auto-fit, minmax(128px, 256px));
    }
    .breadcrumb {
        width: 80%;
    }
}