:root {
    --point-size: 60px;
    --color--red: rgb(240, 40, 40);
    --color--green: rgb(20, 190, 140);
    --color--orange: rgb(245, 115, 45);
}

* {
    font-family: 'Gabarito', sans-serif;
    box-sizing: border-box;
}

html {
    background: white;
    height: 100%;
    font-size: 16px;
}

body {
    background: white;
    color: black;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100vh;
    justify-content: center;
    position: relative;
}

h1, h2 {
    font-family: 'Gabarito', sans-serif;
    margin-top: 20px;
}

h1 {
    color: black;
    font-size: 4em;
    margin-bottom: 40px;
}

h2 {
    color: black;
    font-size: 2em;
    margin-top: 10px;
}
button {
    background: var(--color--orange);
    color: white;
    border: none;
    padding: 10px 20px;
    margin-top: 20px;
    cursor: pointer;
    border-radius: 15px;
    font-size: 1.4rem;
    font-weight: bold;
    box-shadow: 0 4px 8px 0 rgba(255, 255, 255, 0.2), 0 6px 20px 0 rgba(255, 255, 255, 0.19);
    transition: scale 0.2s;
    position: relative;
    overflow: hidden;
}

button:hover:not(button:disabled:hover):not(button.button--no-effect) {
    scale: 105%;
}

button:active:not(button:disabled:hover):not(button.button--no-effect) {
    scale: 95%;
}

button[onclick=""], button:disabled {
    background: #666;
    cursor: not-allowed;
    box-shadow: none;
}

button.button--positive {
    background: var(--color--green);
    color: white;
}

button.button--negativ {
    background: var(--color--red);
    color: white;
}

button.button--neutral {
    background: var(--color--orange);
    color: white;
}

.header {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: auto;
    padding: 10px 20px;
    box-sizing: border-box;
    gap: 10px;
}

/* Media Queries für mobile Geräte */
@media screen and (max-width: 600px) {
    body {
        padding: 10px;
        height: 100svh;
    }
    
    h1 {
        font-size: 3.5em;
    }

    h2 {
        font-size: 2.2em;
    }
    .button-box {
        display: flex;
        flex-direction: column;
        margin-top: 20px;
        bottom: 10px;
        width: calc(100% - 40px);
    }

    button {
        width: 100%;
        padding: 20px;
        font-size: 1.5em;
        margin-top: 20px;
    }
}
