
body {
    
    background: url(../assets/fundo_mosaico4a.svg) no-repeat bottom center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover; 
    background-size: cover;
    background-color: #330707;
    width: 100%;
    height: 100%;
    margin: 0px;
    padding: 0px;
    overflow: hidden;
}

@-moz-document url-prefix() {
    body {
        /*background: url(/assets/bg1.svg) no-repeat bottom center fixed;*/
        background: #330707;
    }
}

img {
    max-width: 100%;
    max-height: 95vh;   
}

.grid1 {
    display: flex;    
    justify-content: space-between;
        
}

.logo {
    max-width: 250px;
    margin-top: 20vh;

    animation-name: fade;
    animation-duration: 1000ms;
    animation-delay: 500ms;
    animation-fill-mode: backwards;
}

.logomarca {
    margin-top: 20px;

    animation-name: fade;
    animation-duration: 1000ms;
    animation-delay: 1500ms;
    animation-fill-mode: backwards;
}

.coluna_e {
    position: absolute;
    bottom: 0;
    left: 0;
}

.coluna_d {
    position: absolute;
    bottom: 0;
    right: 0;
}

.meio {
    display: flex;
    flex-direction: column;
    align-items: center;
    
}

.bem-vindo {
    max-width: 150px;
    margin-top: 25vh;    
    animation-name: fade;
    animation-duration: 1000ms;
    animation-delay: 2000ms;
    animation-fill-mode: backwards;
}

@keyframes fade {
    from {
      opacity: 0;
      transform: scale(0.5);
    }
    to {
      opacity: 1;
      transform: scale(1);
    }
  }
  
