
@keyframes marca {
    from{font-size: 0px;}
    to{font-size: 20px;}
    
}


section{
    background-image: linear-gradient(rgba(1, 0, 1, 0.4),
    rgba(0, 0, 0, 0.4)), url(" /static/general/img/greenlookfundo.jpg");
    background-size: cover;
    
    align-items: center; 
    display: flex;    
}
.title{
    
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    text-align: center;
    justify-content: center;
    
    
    

}
.title h1{
    
    color:#8AFF3D;
    font-family: Michroma, sans-serif;
    font-weight: 600;
    font-size: 20px;
    word-spacing: 20px;
    animation-name: marca;
    animation-duration: 1.5s;
    animation-fill-mode: forwards;

}