@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

*{
    margin: 0;
    padding: 0;
    font-family: "Montserrat", sans-serif;
    
}

.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s ease, transform 1s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.logo{
    width: 30%;
}
.azul-fuerte{
    background-color: #0094B4;
}
.text-blue{
    color: #0094B4 !important;
}
.celeste{
    background-color: #7AC6E0;
}
.verde{
    background-color: #8EB033;
}
.text-green{
    color: #8EB033 !important;
}

