@import url('https://fonts.cdnfonts.com/css/nintendo-ds-bios');
@import url('https://fonts.cdnfonts.com/css/lcd-display-grid');

body {
    background-image: url('https://cdn2.steamgriddb.com/hero_thumb/0a06eb93b7d29e8d9b1891eec932ba2a.jpg');

    font-family: 'Nintendo DS BIOS', sans-serif;
    font-size: large;
}

header, footer {
    display: flex;
    justify-content: center;
}

header {
    font-family: 'LCD Display Grid', sans-serif;
    font-size: medium;
}

footer {
    gap: 5px;
}

nav, section {
    border: 3px solid rgb(189, 189, 189);
    padding: 5px;
}

.middle {
    @media (min-width:801px) {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        margin-left: 5px;
        margin-right: 5px;
    }
    width: 100%;
    gap: 5px;
}

main {
    @media (min-width:801px) {
        width: 85%;
    }
    display: flex;
    flex-direction: column;
    gap: 5px;
}

nav {
    display: flex;
    
    @media (min-width:801px) {
        flex-direction: column;
        width: 10%;
    }

    @media (max-width: 800px) {
        align-items: center;
        justify-content: center;
        gap: 5px;
        h3 {
            display: none;
        }
    }
}

img {
    width: 100%;
    @media (min-width:801px) {
        width: 50%;
    }
}

pre {
    font-size: medium;
    white-space: pre-wrap;
    border: 1px solid black;
    background-color: black;
    color: white;
    padding: 5px;
}