:root {
    --blau: rgb(0,22,98);
    --gelb: rgb(249,201,71);
    --grau: rgb(121, 118, 106);
}

body {
    margin: 0;
    padding: 0;
}

#container {
    display: flex;
    flex-direction: column;
    width: 100vw;
    height: 100vh;
    justify-content: center;
    align-items: center;
}

h1 {
    font-size: clamp(2rem, 2.5vw, 4rem);
    color: var(--grau);
    margin: 0;
    margin-bottom: 0.5rem;
}

h2 {
    font-size: clamp(1rem, 1.25vw, 2rem);
    color: var(--grau);
    margin: 0;
    margin-bottom: 1rem;
}

img {
    width: 50vw;
    margin: 0;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
}

p {
    width: 50vw;
    text-align: center;
    color: var(--grau);
    margin: 0;
    margin-bottom: 1rem;
}

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

button {
    width: 80px;
    height: 40px;
    background-color: white;
    color: var(--blau);
    border: 2px solid var(--gelb);
    border-radius: 0.5rem;
    font-size: 1rem;
    cursor: default;
}


button:hover {
    background-color: var(--blau);
    color: var(--gelb);
    border: none;
    cursor: pointer;
}

@media (max-width: 1000px) {
    img {
        width: 95vw;
    }

    p {
        width: 95vw;
    }
}