
.logo-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
}

.logo {
    margin: 10px;
}

.background h1 {
    color: #C8DE02;
    font-family: ff-good-headline-web-pro, sans-serif;
    font-weight: 700;
    font-style: italic;
    text-transform: uppercase;
    font-size: 150px;
    line-height: 110px;
    margin: 0;
}

.background {
    background: url(/block_header.png) no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}
body {
    margin: 0;
}

@media only screen and (min-width: 1110px) {
    .background h1 {
        font-size: 150px;
    }
}

@media only screen and (max-width: 478px) {
    .background h1 {
        font-size: 25vw;
        line-height: 80%;
    }

    .logo {
        width: 35vw;
    }
}