/* =========================================
   SNONE.DE
   ========================================= */


/* -----------------------------------------
   FARBEN
----------------------------------------- */

:root {
    --tomatenrot: rgb(221, 65, 0);
    --paprikagruen: rgb(42, 72, 32);
    --weiss: rgb(255, 255, 255);
    --farbe-5800: rgb(255, 240, 233);
}


/* -----------------------------------------
   GRUNDLAYOUT
----------------------------------------- */

* {
    box-sizing: border-box;
}

html {
    font-size: 16px;
}

body {
    margin: 0;
    padding: 0;

    background: var(--farbe-5800);
    color: var(--paprikagruen);

    /*
       WICHTIG:
       "adelle-sans" muss dem Namen entsprechen,
       den Adobe Fonts in deinem Kit verwendet.
    */
    font-family: "adelle-sans", sans-serif;
}


/* -----------------------------------------
   HAUPTBEREICH
----------------------------------------- */

main {
    min-height: calc(100vh - 80px);

    padding: 60px 6vw 100px;
}


/* -----------------------------------------
   HEADLINE
----------------------------------------- */

.headline {
    margin: 0;

    color: var(--tomatenrot);

    font-size: 75pt;
    line-height: 90pt;

    font-weight: 800;

    letter-spacing: -0.02em;
}


/* -----------------------------------------
   CLAIM
----------------------------------------- */

.claim {
    margin: 0;

    color: var(--tomatenrot);

    font-size: 75pt;
    line-height: 90pt;

    font-weight: 400;

    letter-spacing: -0.02em;
}


/* -----------------------------------------
   INTROTEXT
----------------------------------------- */

.intro {
    max-width: 1500px;

    margin-top: 360px;
    margin-bottom: 0;

    color: var(--paprikagruen);

    font-size: 30pt;
    line-height: 40pt;

    font-weight: 400;
}


/* "snone" im Intro */
.intro strong {
    color: var(--tomatenrot);

    font-weight: 800;
}


/* -----------------------------------------
   FOOTER
----------------------------------------- */

footer {
    /*
       Gleiche linke Ausrichtung wie der
       restliche Seiteninhalt.
    */
    margin: 0 6vw;

    /*
       Eine Zeile Abstand zwischen Linie
       und Menü.
    */
    padding: 40px 0 35px;

    background: transparent;

    /*
       3 pt starke Linie in Tomatenrot.
    */
    border-top: 3pt solid var(--tomatenrot);

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

    gap: 35px;
}


/* Footer Links */

footer a {
    color: var(--tomatenrot);

    text-decoration: none;

    font-size: 15pt;
    line-height: 20pt;

    font-weight: 400;
}


footer a:hover {
    text-decoration: underline;
}


/* -----------------------------------------
   UNTERSEITEN
   IMPRESSUM / LEGALS
----------------------------------------- */

.subpage {
    min-height: calc(100vh - 80px);
}


/*
   Auf den Unterseiten bleibt der Head
   identisch zur Startseite.

   Danach folgt mit großem Abstand
   der jeweilige Inhalt.
*/

.subpage-content {
    max-width: 1100px;

    margin-top: 360px;
}


/* Titel "Impressum" / "Legals" */

.subpage-title {
    margin: 0 0 40px;

    color: var(--tomatenrot);

    font-size: 30pt;
    line-height: 40pt;

    font-weight: 800;
}


/* Text auf Impressum / Legals */

.subpage-text {
    margin: 0;

    color: var(--paprikagruen);

    font-size: 30pt;
    line-height: 40pt;

    font-weight: 400;
}


/* =========================================
   TABLET
   ========================================= */

@media (max-width: 1000px) {

    main {
        padding: 40px 5vw 80px;
    }


    .headline,
    .claim {
        font-size: 52pt;
        line-height: 64pt;
    }


    .intro,
    .subpage-title,
    .subpage-text {
        font-size: 22pt;
        line-height: 31pt;
    }


    .intro,
    .subpage-content {
        margin-top: 250px;
    }


    footer {
        margin: 0 5vw;
        padding: 32px 0 30px;
    }
}


/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 600px) {

    main {
        padding: 30px 25px 60px;
    }


    .headline,
    .claim {
        font-size: 36pt;
        line-height: 44pt;
    }


    .intro,
    .subpage-title,
    .subpage-text {
        font-size: 18pt;
        line-height: 26pt;
    }


    .intro,
    .subpage-content {
        margin-top: 180px;
    }


    footer {
        /*
           Gleiche linke Ausrichtung
           wie der mobile Seiteninhalt.
        */
        margin: 0 25px;

        /*
           Eine Zeile Abstand zwischen
           Linie und Menü.
        */
        padding: 26px 0 25px;

        gap: 25px;

        flex-wrap: wrap;
    }


    footer a {
        font-size: 13pt;
        line-height: 18pt;
    }
}
```
