/*
Theme Name: SMM Logo Theme
Theme URI: https://example.com/
Author: Tu Nombre
Author URI: https://example.com/
Description: Tema ultra simple que muestra solo el logo sobre fondo negro.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: smm-logo-theme
*/

body {
  background: #000;
  margin: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Ajuste solo si está la barra de admin */
body.admin-bar {
  min-height: calc(100vh - 32px); /* la barra WP mide 32px en escritorio */
}

@media screen and (max-width: 782px) {
  body.admin-bar {
    min-height: calc(100vh - 46px); /* en móviles mide 46px */
  }
}