:root {
    --bg: #b4093d;
    --footer-bg: #435fa0;
}

* {
    font-family: "Futura HV BT";
    margin: 0;
    padding: 0;
    width: 100%;
}

p,
h1 {
    color: white;
}

header {
    display: flex;
    justify-content: center;
    width: 90%;
    margin: 0 auto;
}

header .logo {
    max-width: 400px;
    margin: 0px;
}

.content {
    background: var(--bg);
    height: 49.5vh;
    display: grid;
    place-content: center;
}

footer {
    background: var(--footer-bg);
    display: grid;
    place-content: center;
    height: 76px;
}

.content h1 {
    display: block;
}
.content .center .logo {
    width: 200px;
}

.contenedor-img {
    display: grid;
    place-content: center;
}
@media (width > 280px) and (width < 1024px) {
    footer {
        text-align: center;
    }

    .content {
        text-align: center;
    }

}