* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    border: none;
    text-align: center;
    background: #000;
    font-family: 'Poppins', sans-serif;
}

body,
.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.container {
    width: 100%;
    max-width: 650px;
}

.imagem {
    width: 240px;
    margin-top: 50px;
}

.titulo-principal {
    font-family: 'Poppins';
    font-weight: bold;
    color: #00DC00;
    text-align: center;
    margin-bottom: 15px;
}

.titulo-secundario {
    color: #FFFFFF;
    font-size: 16px;
    text-align: center;
}


/* INICIO ANIMAÇÃONO TEXTO **DEVCLUB** */
.titulo-principal span {
    font-family: 'Poppins';
    font-weight: bold;
    animation-name: brilho;
    animation-duration: 2s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
}

.titulo-principal .d {
    animation-delay: 0.25s;
}

.titulo-principal .e {
    animation-delay: 0.50s;
}

.titulo-principal .v {
    animation-delay: 0.75s;
}

.titulo-principal .c {
    animation-delay: 1.0s;
}

.titulo-principal .l {
    animation-delay: 1.25s;
}

.titulo-principal .u {
    animation-delay: 1.50s;
}

.titulo-principal .b {
    animation-delay: 1.70s;
}

@keyframes brilho {
    0% {
        color: #00DC00;
        text-shadow: 0 0 12px #03ff03, 0 0 50px #03ff03, 0 0 100px #03ff03;
    }

    10%,
    90% {
        color: #00DC00;
        text-shadow: none;
    }
}

/* FIM ANIMAÇÃO NO TEXTO **DEVCLUB** */
/* INICIO ESTILOS INPUT / BOTÃO */
#email {
    color: #FFFFFF !important;
    background-color: #FFFFFF33 !important;
    border: none !important;
    margin-top: -10px;
}

#email,
#_form_29_submit {
    width: 450px !important;
    border-radius: 14px !important;
    height: 45px !important;
}

._form-branding {
    display: none;
}

/* FIM ESTILOS INPUT / BOTÃO */

/* FOOTER */

footer {
    width: 80%;
    border-top: 1px solid #FFF6;
    margin-bottom: 20px;
    padding-top: 10px;
}

.texto-footer {
    color: #FFF6;
}

/* FIM FOOTER */

/* RESPONSIVIDADE */

@media (max-width:319px) {
    #email {
        margin-bottom: 5px !important;
    }
}

@media (max-width:333px) {
    #_form_29_submit {
        height: 90px !important;
    }
}

@media (min-width: 667px) {
    footer {
        position: absolute;
        bottom: 0;
    }
}

@media (max-width: 667px) {
    .container {
        padding: 20px;
    }

    .titulo-principal {
        font-size: 22px;
    }

    .titulo-secundario {
        font-size: 14px;
    }

    .imagem {
        width: 200px;
        margin-top: 25px;
        margin-bottom: 15px;
    }

    #email,
    #_form_29_submit {
        width: 100% !important;
        border-radius: 14px !important;
        height: 72px !important;
    }

    #email {
        margin-bottom: -10px;

    }

    footer {
        margin-top: 40px;
    }
}

/* FIM RESPONSIVIDADE */