@font-face {
    font-family: "Scto-Medium";
    src: url("../fonts/Scto_Medium.otf") format("opentype");
}

@font-face {
    font-family: "Scto-Bold";
    src: url("../fonts/Scto_Bold.otf") format("opentype");
}

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

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    padding: 10px;

    background: black;
    color: white;

    font-family: "Scto-Medium", sans-serif;
    font-size: 25px;
}

a {
    color: white;
    text-decoration: none;
}

header {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;

    font-size: 21px;
    margin-bottom: 40px;
}

.about-page {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
}

/* Intro links, Text rechts */

.intro {
    grid-column: 1;
    line-height: 1.1;
}

.intro p {
    margin-bottom: 5px;
}

.intro-text {
    grid-column: 2 / 6;
    line-height: 1.1;
}

.intro-text p {
    margin-bottom: 15px;
}

/* Weitere Bereiche */

.about-section {
    grid-column: 1 / -1;

    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;

    margin-top: 60px;
}

.about-section h2 {
    grid-column: 1;

    font-size: 21px;
    font-weight: normal;
    font-family: "Scto-Medium", sans-serif;
}

.about-section>p,
.about-section>.entry {
    grid-column: 2 / 6;
}

.entry {
    display: grid;
    grid-template-columns: 1fr 4fr;
    gap: 10px;

    margin-bottom: 15px;
    line-height: 1.1;
}

footer {
    margin-top: 60px;

    display: flex;
    justify-content: center;

    font-size: 21px;
}

/* MOBILE */

@media (max-width: 750px) {

    body {
        font-size: 20px;
    }

    header {
        font-size: 20px;
        gap: 12px;
        flex-wrap: wrap;
        margin-bottom: 40px;
    }

    .about-page {
        display: block;
    }

    .intro,
    .intro-text,
    .about-section {
        display: block;
        margin-bottom: 40px;
    }

    .intro-text p,
    .about-section p {
        margin-bottom: 15px;
    }

.about-section h2 {
    font-size: 20px;
    margin-bottom: 15px;

    width: 100%;
    text-align: center;
}

    .entry {
        display: block;
        margin-bottom: 20px;
    }

    .entry p:first-child {
        margin-bottom: 5px;
    }

    footer {
        font-size: 20px;
        margin-top: 40px;
    }

}