
/*
Theme Name: Miyabayashi Dark
Theme URI: https://miyabayashi.com.br
Author: ChatGPT
Description: Tema simples dark, com imagem central e menu transparente.
Version: 1.1
*/

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

body {
    background: #000;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    min-height: 100vh;
}

a {
    color: #fff;
    text-decoration: none;
}

header {
    position: absolute;
    top: 0;
    width: 100%;
    padding: 20px 40px;
    z-index: 10;
}

body.admin-bar header {
    top: 32px;
}

@media (max-width: 782px) {
    body.admin-bar header {
        top: 46px;
    }
}

nav ul {
    display: flex;
    gap: 30px;
    list-style: none;
}

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

.center-image img {
    max-width: 70vw;
    max-height: 70vh;
    width: auto;
    height: auto;
    display: block;
}

@media (max-width: 768px) {
    nav ul {
        gap: 15px;
    }
}
