@font-face
{
    font-family: "roboto";
    src: url("/fonts/roboto/Roboto-Regular.ttf");
}

@font-face
{
    font-family: "roboto-thin";
    src: url("/fonts/roboto/Roboto-Thin.ttf");
}

body
{
    display: flex;
    flex-direction: column;
    align-items: center;

    margin: 0;
    background-color: black;
    color: yellow;
    font-family: roboto;

    max-width: 100vw;
    overflow: hidden;
}

main
{
    max-width: 50em;
    display: flex;
    flex-direction: column;
    align-items: center;
}

img
{
    margin: 0;
    width: 25em;
}

h1
{
    margin: 0;
    font-family: roboto-thin;
    font-size: 5em;
    font-weight: normal;
}

h2
{
    margin: 0;
    font-family: roboto-thin;
    font-size: 2.5em;
    font-weight: normal;
}

@media only screen and (max-width: 800px) and (min-width: 500px)
{
    h1
    {
        font-size: 4em;
    }

    h2
    {
        font-size: 2em;
    }
}

@media only screen and (max-width: 500px) and (min-width: 350px)
{
    h1
    {
        font-size: 3em;
    }

    h2
    {
        font-size: 1.5em;
    }
}

@media only screen and (max-width: 350px)
{
    h1
    {
        font-size: 2em;
    }

    h2
    {
        font-size: 1em;
    }

    img
    {
        width: 15em;
    }
}