@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Tahoma&display=swap');

/* Farbvariablen */
:root{
    --main-brand-color: #297AE3;
    --primary-color: #232933;
    --secondary-color: #15171C;
    --light-secondary-color: #2E3744;
    --text-color: white
;
    --secondary-text-color: #808080;
}

/* Standard-Stile */
*{
    margin: 0;
    padding: 0;
}

body{
    min-height: 100vh;
    background: var(--primary-color);
    font-family: 'Tahoma', sans-serif; /* Normaler Text in Tahoma */
    font-size: 20px;
    color: var(--text-color);
}

/* Überschriften in Orbitron */
h1, h2, h3 {
    font-family: 'Orbitron', sans-serif; /* Orbitron für Überschriften */
    font-weight: bold;
}

h1{
    font-size: 75px;
    line-height: 110%;
}

h2{
    font-size: 35px;
    line-height: 100%;
}

p.subheading {
    margin-top: 80px; /* Erhöhe diesen Wert für mehr Abstand zum Slogan */
    font-size: 20px;
}

h3{
    font-size: 28px;
}

/* Mobile Anpassungen */
/* Mobile Anpassungen */
@media(max-width: 800px) {
    body {
        font-size: 16px;
    }
    h3 {
        font-size: 28px;
    }
    h1 {
        font-size: 12vw;
        text-align: center;
    }
    h2.slogan {
        text-align: center;
        font-size: 6vw; /* Passt die Größe an die Mobilansicht an */
        margin-top: 70px; /* Vergrößert den Abstand zwischen Name und Slogan */
    }
    .subheading {
        text-align: center;
    }
}




