:root {
    /*Farben*/
    --white: #fff;
    --beige: #E6B185;
    --dark: #161B22;
    --grey: #20262F;

    /*Schrift*/
    --conqueror: AW Conqueror Std Stincilla, Times New Roman, serif;
    --spectral: Spectral, Times News Roman, serif;
    --inter: Inter, sans-serif;
}

/* spectral-200italic - latin */
@font-face {
    font-display: swap;
    font-family: 'Spectral';
    font-style: italic;
    font-weight: 200;
    src: url('../fonts/spectral-v15-latin-200italic.woff2') format('woff2'),
        /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
        url('../fonts/spectral-v15-latin-200italic.ttf') format('truetype');
    /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
}

/* spectral-300 - latin */
@font-face {
    font-display: swap;
    font-family: 'Spectral';
    font-style: normal;
    font-weight: 300;
    src: url('../fonts/spectral-v15-latin-300.woff2') format('woff2'),
        /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
        url('../fonts/spectral-v15-latin-300.ttf') format('truetype');
    /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
}

/* spectral-300italic - latin */
@font-face {
    font-display: swap;
    font-family: 'Spectral';
    font-style: italic;
    font-weight: 300;
    src: url('../fonts/spectral-v15-latin-300italic.woff2') format('woff2'),
        /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
        url('../fonts/spectral-v15-latin-300italic.ttf') format('truetype');
    /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
}

/* spectral-600 - latin */
@font-face {
    font-display: swap;
    font-family: 'Spectral';
    font-style: normal;
    font-weight: 600;
    src: url('../fonts/spectral-v15-latin-600.woff2') format('woff2'),
        /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
        url('../fonts/spectral-v15-latin-600.ttf') format('truetype');
    /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
}

/* inter-100 - latin */
@font-face {
    font-display: swap;
    /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Inter';
    font-style: normal;
    font-weight: 100;
    src: url('../fonts/inter-v20-latin-100.woff2') format('woff2'),
        /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
        url('../fonts/inter-v20-latin-100.ttf') format('truetype');
    /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
}

/* inter-300 - latin */
@font-face {
    font-display: swap;
    /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Inter';
    font-style: normal;
    font-weight: 300;
    src: url('../fonts/inter-v20-latin-300.woff2') format('woff2'),
        /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
        url('../fonts/inter-v20-latin-300.ttf') format('truetype');
    /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
}


/****************************************/


body,
html {
    margin: 0;
    min-width: 100%;
    min-height: 100vh;
    font-family: var(--spectral);
}

body {
    display: flex;
}

.all-container {
    margin: 0 auto;
    padding: 20px 30px;
    max-width: 1200px;
}

#logo {
    display: block;
    margin: 15px auto;
    width: clamp(100px, 12vw, 150px);
    max-width: 150px;
}

.text-container {
    width: 100%;
    text-align: center;
}

h1 {
    font-family: var(--conqueror);
    font-weight: 200;
    margin: 0;
    font-size: clamp(33px, 4vw, 48px);
    letter-spacing: 5px;
    text-transform: uppercase;
    margin: 75px 0 20px 0;
}

h2 {
    font-family: var(--conqueror);
    font-weight: 200;
    margin: 0;
    font-size: clamp(20px, 2.5vw, 30px);
    text-transform: uppercase;
    padding-top: 20px;
}

p {
    line-height: 28px;
    margin-top: 20px;
    margin-bottom: 40px;
    color: var(--grey);
    font-size: 1rem;
    font-family: var(--inter);
    font-weight: 300;
}

p strong {
    font-family: var(--spectral);
    font-weight: 600;
    font-size: 1.1rem;
}

p:where(> h3) {
    margin-bottom: 20px;
}

h3 {
    margin: 0;
}

div a {
    color: var(--beige);
    text-decoration: none;
}

.all-content-container {
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 40px;
}

@media screen and (max-width: 1024px) {
    .all-content-container {
        margin: 0 auto;
        display: block;
        
    }

    #logo {
        display: block;
        margin: 20px 0 0 0 ;
    }

    h1 {
        margin: 50px 0 20px 0;
    }
}