body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: #fff;
    background: linear-gradient(90deg, #000000 0%, #333333 100%);
}

.container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    height: 100vh;
    padding: 0 180px;
    box-sizing: border-box;
    margin: auto
}

.content {
    padding: 0 5%;
    max-width: 100%;
}

h1 {
    font-size: 48px;
    line-height: 1.2;
}

h1 span {
    color: orange;
}

p {
    font-size: 18px;
    margin-top: 20px;
}

p strong {
    font-weight: bold;
}

p a {
    color: orange;
    text-decoration: none;
}

.fut {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
}

footer {
    color: #ccc;
    text-align: center;
    padding: 30px;
    font-size: 0.9em;
}

footer a {
    text-decoration: none;
    color: #ff7b00;
}

@media(max-width:1192px) {
    h1 {
        font-size: 36px;
    }
}

@media(max-width:992px) {
    body {
        padding: 0 30px;
    }

    .container {
        display: block;
        padding: 80px 0;
    }

    h1 {
        font-size: 30px;
        text-align: center;
    }

    p {
        font-size: 14px;
        text-align: center;
    }
}

@media(min-width: 769px) {
    footer.responsive {
        display: none;
    }

    .linebreak {
        display: none;
    }
}

@media(max-width: 768px) {
    footer.responsive {
        display: block;
        line-height: 1.8;
    }

    footer.desktop {
        display: none;
    }
}