
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  body{background-color: #333;}
  .container {
    min-height: 100vh;
    flex-direction: column;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #333;
    background-image: url(../img/bkg2.png), url(../img/bkg.png), url(../img/bkg.png), url(../img/bkg.png), url(../img/bkg2.png);
    background-color: rgba(149, 76, 233, 0.455) ;
    background-repeat: no-repeat;
    background-blend-mode: lighten, soft-light, soft-light, color-dodge, hard-light;
    background-position: -418px 281px, 914px -293px, -340px -467px, center -43px, 600px 335px;
}
.info{display: flex;
    flex-direction: column;
 margin: auto;
 
}
.logo{
    width: 400px;
    background: url('../img/LOGO_SIMPLES_BRANCO.png');
    background-repeat: no-repeat;
    background-size: contain;    
    background-position: center center;
    min-height: 400px;
    
    -webkit-animation:spin 10s linear infinite;
    -moz-animation:spin 10s linear infinite;
    animation:spin 10s linear infinite;
}
.texto{
    
    background: url('../img/LOGO_TEXTO_BRANCO.png');
    min-height: 250px;
    background-size: contain;
    background-repeat: no-repeat;

} 
.texto2{font-size: 1.5rem;
    color: #dddddd;
    font-family: Poppins;
    align-self: center;}
@-moz-keyframes spin { 
    100% { -moz-transform: rotate(360deg); } 
}
@-webkit-keyframes spin { 
    100% { -webkit-transform: rotate(360deg); } 
}
@keyframes spin { 
    100% { 
        -webkit-transform: rotate(360deg); 
        transform:rotate(360deg); 
    } 
}