body {
    font-family: monospace;
    background: #010101;
    color: white;
    max-width: 900px;
    margin: 0 auto;
    font-size: 14px;
    padding: 50px;
    box-sizing: border-box;
}

*,
*::before,
*::after {
    box-sizing: inherit;
}

a {
    color: #fded4d;
    text-decoration: none;
}

a:hover {
    color: #FFA500;
}

h1 {
    margin: 0 0 30px 0;
}

h1 a {
    display: block;
    background-image: url("../images/kerozene_logo.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    max-width: 800px;
    height: 530px;
    margin: 0 auto;
}

h1 a span {
    display: none;
}

p {
    line-height: 1.6;
    margin: 10px 0px 10px 0px;
}

/* Mobile */
@media (max-width: 768px) {

    h1 a {
        background-image: url("../images/kerozene_logo_mobile.png");
        width: 100%;
        max-width: 512px;
        height: 339px;
        margin: 0 auto;
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
    }
}