/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    width: 100%;
    margin: 0;
}


/* Base font sizing: ensure at least 18px for body text, responsive scaling allowed */
body {
    font-size: clamp(18px, 2vw, 20px); /* >=18px, scales with viewport up to 20px */
}

/* Fondo con imagen */
.background {
    background-image: url('Aceite-Sierra-Santo.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100vh;
    background-color: #000; /* fallback */
    display: flex;
    flex-direction: column; /* stack headings vertically so each h1/h2 appears on its own line */
    gap: 0.5rem;
    align-items: center;
    justify-content: center;
    color: #fff;
}

/* Responsive para móviles */
@media (max-width: 768px) {
    .background {
        background-position: center;
        background-size: cover;
    }
}

