#test{
    color:#3ca17f;
    color:#2c775e;
    color:#276b54;

}

/*defino tamaños objetivos de fonts */

body {
  font-size: 14px;
}

@media (min-width: 768px) {
  body {
    font-size: 16px;
  }
}

@media (min-width: 1200px) {
  body {
    font-size: 18px;
  }
}



body {
    background: #f8f8f8;
    background: #276b54;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}
#svgM {
    border: 1.5px solid #2c775e;
    border: 0px solid #2c775e;
    opacity: .5;
    /*transform: translate(40px,90px);*/
}

#svgM:hover{
    opacity: .8;
}

.container-logo{
    display: flex;
    flex-direction: column;
    
    font-family: 'Antonio', sans-serif;
    font-weight: 100; /* super fino */
    color: #3ca17f;
    text-align: center;
    

}

.titulo1{
    font-size: 1.666rem;
    transform: skewX(-10deg);
    display: inline-block; /* necesario para que transform funcione */
}

.titulo2{
    font-size: 2rem;
}

@keyframes dibujar {
  to {
    stroke-dashoffset: 0;
  }
}

.aparece-tarde {
  opacity: 0;
  animation: aparecer .2s ease-in forwards;
  animation-delay: 1.4s; /* ⏱ espera 3 segundos antes de animar */
}

@keyframes aparecer {
  to {
    opacity: 1;
  }
}