/* Modern CSS for Dragonpaw.org */

:root {
    --bg-color: #000;
}

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

html {
    font-size: 16px;
}

body {
    background-color: var(--bg-color);
    font-family: Arial, Helvetica, sans-serif;
}

main {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    width: 100%;
}

header {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

header img {
    max-width: 90vw;
    max-height: 90vh;
    height: auto;
    width: auto;
}

/* Responsive design */
@media (max-width: 768px) {
    header img {
        max-width: 95vw;
        max-height: 95vh;
    }
}