@keyframes fade-in {
            from {opacity: 0; transform: scale(.7,.7)}
            to {opacity: 1;}
        }
        .section {
        opacity: 0;
        }
        section {
        position: relative;
        }
        .fade-in {
          animation: fade-in 1.4s;
        }