body {
    margin: 0;
    padding: 0;
    text-align: center;
}

h1 {
    color: white;
    font-family: Arial, Helvetica, sans-serif;
    text-transform: uppercase;
    text-shadow: 1px 2px 5px 10px black;
    font-size: 30px;
    padding-top: 15px;
    padding-bottom: 40px;
    text-shadow: 1px 1px 1px black;
}

.container-space {
    margin-bottom: 20px;
}

.banners {
    width: 450px;
    border-radius: 5px;
    transition-duration: 400ms;
    transition-property: transform;
}

.banners:hover {
    transform: scale(1.1);
}


section {
    background-image: url("/image/background.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding-top: 20px;
    padding-bottom: 250px;
    height: 100vh;
}

footer {
    background-color: white;
    padding: 15px;
}

p {
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
}

@media screen and (max-width: 550px) {
    .container-inicial img {
        width: 350px;
    }

    h1 {
        font-size: 25px;
    }
    .banners {
        width: 300px;
    }

    footer {
        padding: 10px;
    }
}

@media screen and (max-width: 834px) {
    h1 {
        max-width: 800px;
    }
}