html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.textSzX1 p{

    font-size:14pt;

}

.textSzX15 p {
    font-size: 15pt;
}



.textSzX16 p {
    font-size: 16pt;
}

.textSzX18 p {
    font-size: 18pt;
}


@keyframes fadeout {
    0% {
        opacity: 0;
       transform: translateY(30px) scale(0.9);
    }

    100% {
        opacity: 1;
        transform: translateY(0px) scale(1);
    }
}



@keyframes fade-down {
    100% {
     opacity:0;
     transform:translateY(-30px) scale(0.99);
    }

    0% {
        opacity: 1;
        transform: translateY(0px) scale(1);
    }
}

.intro {
    animation:fade-up 0.4s 0.6s
}