/* style.css */
body {
    font-family: verdana;
    margin: 0;
    padding: 0;
}

h1 {
    display: block;
    font-size: 1.9em;
    font-weight: 400;
    margin-top: 10px;
    letter-spacing: -1px;
}

h2 {
    display: block;
    font-size: 1.4em;
    font-weight: 400;
    color: #0563C1;
    margin-top: 30px;
    letter-spacing: -1px;
}

h3 {
    display: block;
    font-size: 1.4em;
    font-weight: 400;
    margin-top: 30px;
    letter-spacing: -1px;
}

a:link {
    color: #0563C1;
}

a:hover {
    color: red;
}

a:active {
    color: #0563C1;
}

header {
    background-color: #0563C1;
    color: white;
    padding: 1em;
    text-align: center;
}

main {
    padding: 2em;
    display: flex;
    flex-direction: column; /* Stack sections on smaller screens */
}

section {
    margin-bottom: 1em;
    border: 1px solid #ddd;
    padding: 1em;
}

footer {
    background-color: #f4f4f4;
    padding: 1em;
    text-align: center;
}

/* Responsive Design mit Media Queries */
@media (min-width: 768px) {
    main {
        flex-direction: row; /* Side-by-side sections on larger screens */
        justify-content: space-between;
    }

    section {
        width: 47.5%; /* Two columns on larger screens */
    }
}