/* ======= Google fonts (diverse Schriften) ======= */

/* @import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;600;700&display=swap') */

@import "myfonts.css";

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

body {
    font-family: 'Manrope', sans-serif;
    height: 100vh;
    background-image: url("bg2_dirk-thole.jpg"); /* Hintergrundbild */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Overlay für bessere Lesbarkeit */
.overlay {
    height: 100%;
    width: 100%;
    background: rgba(187, 194, 208, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

/* Inhalt */
.content {
    max-width: 600px;
}

/* Logo */
.logo {
    max-width: 185px;
    width: 100%;
    margin-bottom: 40px;
}

/* Überschrift */
h1 {
    font-size: 1.85em;
    color: #d8dae1;
    margin-bottom: 30px;
    font-weight: 700;
}

/* Überschrift2 */
h2 {
    font-size: 1.75rem;
    color: #d8dae1;
    margin-bottom: 15px;
    font-weight: 700;
}

/* Überschrift3 */
h3 {
    font-size: 1.35rem;
    color: #d8dae1;
    margin-bottom: 15px;
    font-weight: 500;
}

/* Text */
p {
    font-size: 1.35rem;
    color: #d8dae1;
    margin-bottom: 30px;
    font-weight: 500;
}

/* Responsive Anpassungen */
@media (max-width: 600px) {
    h1 {
        font-size: 1.6rem;
    }

    h2 {
    font-size: 1.35rem;
    }

    p {
        font-size: 1.2rem;
    }

    .logo {
        max-width: 160px;
        margin-bottom: 30px;
    }
}
