/*
===============================================================================
Project:        FreKon Digital Website
File:           style.css
Company:        FreKon Digital
Website:        https://frekondigital.de
Description:    Globales Styling der FreKon Digital Website.
Author:         FreKon Digital
Copyright:      © 2026 FreKon Digital. All rights reserved.
===============================================================================
*/


/* ---------------------------------------------------------------------------
   Basis
--------------------------------------------------------------------------- */

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

html,
body {
    width: 100%;
    min-height: 100%;
}

body {
    min-height: 100vh;

    display: flex;
    align-items: center;
    justify-content: center;

    background-color: #ffffff;

    font-family:
        Inter,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
}


/* ---------------------------------------------------------------------------
   Im-Aufbau-Seite
--------------------------------------------------------------------------- */

.construction {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    padding: 40px;

    text-align: center;
}

.logo {
    width: min(420px, 75vw);
    height: auto;
}

.status {
    margin-top: 48px;

    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.3em;

    color: #6b6b6b;
}