@import url('https://fonts.googleapis.com/css2?family=Playwrite+DE+Grund:wght@100..400&display=swap');


* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Playwrite DE Grund", cursive;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #f9f9f9;
    color: #333;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

header h1 {
    text-align: center;
    font-size: 2rem;
    color: #333;
    margin-top: 20px;
}

main {
    max-width: 800px;
    background-color: #fff;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    margin: 20px;
}

section {
    text-align: left;
}

section h2 {
    font-size: 1rem;
    color: #555;
    margin-bottom: 10px;
}

section p {
    font-size: 12px;
    line-height: 1.6;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    main {
        padding: 10px;
        margin: 10px;
    }

    header h1 {
        font-size: 1.5rem;
    }

    section h2 {
        font-size: 1rem;
    }

    section p {
        font-size: 11px;
    }
}
