* {
    margin: 0px;
    padding: 0px;
}

html {
    background: url("https://www.kawasakiconsorcios.com.br/view/images/sucesso/shape.png") no-repeat center fixed;
    background-size: cover;
}

.container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr 1fr 1fr;
    gap: 0px 0px;
    grid-auto-flow: row;
    grid-template-areas:
        ". . . . ."
        ". . agradecimento agradecimento ."
        ". . . button ."
        "vulcan vulcan . . ."
        "vulcan vulcan . footer footer";
}

.footer {
    grid-area: footer;
}

.footer img {
    width: 40%;
    height: auto;
    position: absolute;
    right: 0;
    bottom: 0;
    padding: 30px;
    z-index: 1;
}

.vulcan {
    grid-area: Vulcan;
}

.vulcan img {
    width: 50%;
    height: auto;
    position: absolute;
    left: 0;
    bottom: 0;
}

.agradecimento {
    grid-area: agradecimento;
}

.agradecimento img {
    width: 50%;
    height: auto;
    position: absolute;
    right: 10%;
    top: 20%;
}

.button {
    grid-area: button;
}

.button img {
    width: 30%;
    height: auto;
    position: absolute;
    right: 5%;
    top: 60%;
}

.redirect {
    color: white;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    position: absolute;
    right: 5%;
    top: 75%;
    text-align: right;
}

#timer {
    font-size: 3rem;
}

.nome_vulcan {
    display: none;
}

.logo_ancora {
    display: none;
}

.logo_kawasaki {
    display: none;
}

@media only screen and (max-width: 1366px) {
    .Agradecimento img {
        width: 80%;
        height: auto;
        position: absolute;
        right: 10%;
        top: 20%;
    }

    .Button img {
        width: 35%;
        height: auto;
        position: absolute;
        right: 5%;
        top: 60%;
    }
}

@media only screen and (max-width: 414px) {
    .container {
        display: block;
    }

    .agradecimento img {
        width: 90%;
        height: auto;
        position: absolute;
        left: 5%;
        top: 10%;
    }

    .button img {
        width: 90%;
        height: auto;
        position: absolute;
        left: 5%;
        top: 23%;
    }

    .redirect {
        position: absolute;
        right: 5%;
        top: 30%;
        text-align: right;
        font-size: .8rem;
    }

    #timer {
        font-size: 1.5rem;
    }

    .footer img {
        display: none;
    }

    .bulcan img {
        width: 90%;
    }

    .nome_vulcan {
        display: block;
    }

    .nome_vulcan img {
        width: 60%;
        position: absolute;
        left: 0;
        bottom: 42%;
    }

    .logo_ancora {
        display: contents;
        width: 80%;
    }

    .logo_ancora img {
        width: 80%;
    }

    .logo_kawasaki {
        width: 80%;
        position: absolute;
        left: 0;
        bottom: 45%;
        display: block;
    }

    .logo_kawasaki img {
        width: 100%;
    }
}