@font-face {
    font-family: geograph;
    src: url(fonts/test-geograph-medium.woff2)
}

@font-face {
    font-family: soehne;
    src: url(fonts/test-soehne-breit-buch.woff2);
}

*, *::before, *::after{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: black;
    color: rgb(255, 255, 255);
    padding: 1rem;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

h1{
    font-size: 5rem;
    text-align: center;
}

@media screen and (max-width: 1024px) {
    h1:hover {
        font-family: 'Courier New', Courier, monospace;
    }
}
@media screen and (max-width: 768px) {
    h1:hover {
        font-family: geograph
    }
}
@media screen and (max-width: 600px) {
    h1:hover {
        font-family: soehne;
    }
}
@media screen and (max-width: 480px) {
    h1:hover {
        font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    }
}
@media screen and (max-width: 320px) {
    h1:hover {
        font-family: Arial, Helvetica, sans-serif;
    }
}