/*
Theme Name: Bemtec Theme
Theme URI: https://bemtec.cl/
Author: Bemtec
Author URI: https://lainternet.cl/
Description: WP theme para Bemtec.
Version: 0.1.0
Text Domain: bemtec-theme
*/

:root {
  --ink: #111111;
  --surface: #ffffff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: var(--surface);
  color: var(--ink);
}

.site-main {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
}

.brand-logo {
  width: min(60vw, 360px);
  height: auto;
  display: block;
}
