* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/* Schriftart Einfügen */
@font-face {
    font-family: '04b';
    src: url('../schriften/04B_30__.TTF') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'retro';
    src: url('../schriften/Retro\ Gaming.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* Ende Schriftart */

main {
    display: flex;
    justify-content: center;
    width: 100%;
}

h1 {
    font-family: '04b';
    font-size: 7vw;
    color: #EBEBEA;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #000;
}

h2 {
    font-family: 'retro';
    font-size: 3.5vw;
    color: #EBEBEA;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #000;
    text-align: center;
}

button {
    font-family: 'retro';
    font-size: 2vw;
    background-color: #EBEBEA;
    color: #000;
    border: none;
    padding: 1vw 3vw;
    cursor: pointer;
    border-radius: 0.7vw;
}

button:hover {
    background-color: #b8b8b8;
}


@media screen and (max-width: 1130px) and (min-width: 577px) {

    h1 {
        font-size: 8vw;
    }

    h2 {
        font-size: 5vw;
    }

    button {
        font-size: 3vw;
        padding: 1.5vw 3.5vw;
        border-radius: 1.5vw;
    }



}

/*** Handy  ***/
@media screen and (max-width: 576px) {

    h2 {
        font-size: 8vw;
        margin-top: 20%;
    }

    button {
        font-size: 5vw;
        padding: 2vw 4vw;
        border-radius: 2vw;
    }

    h1 {
        font-size: 9vw;
    }

}