/*
Theme Name: RUFA Headless Theme
Theme URI: https://rufa.cloud
Author: RUFA
Author URI: https://rufa.cloud
Description: Minimales Theme für Headless WordPress
Version: 1.1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: rufa-headless
*/

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: #fff;
    min-height: 100vh;
    color: #1a1a1a;
}

.landing {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding: 2rem;
    text-align: center;
}

.landing__logo {
    display: block;
    line-height: 0;
}

.landing__logo img {
    display: block;
    max-width: min(280px, 80vw);
    height: auto;
}

.landing__link {
    font-size: 1rem;
    color: #1a1a1a;
    text-decoration: underline;
    text-underline-offset: 0.2em;
}

.landing__link:hover,
.landing__link:focus {
    color: #333;
}
