/*.photo {
    width: 100vw;
    height: 100vh;
    top: 0px;
    left: 0px;
    animation-name: drive;
    animation-duration: .95s;
    
}
@keyframes drive {
    0% { 
        transform: scale(1.1)
    }
    100% {
        transform: scale(1)
    }
}*/

.heads {
    top: 0px;
    left: 0px;
    /*margin: auto; /*center h1*/
    /*width: 50%; /*center h1*/
    opacity: 0; /*CHANGE TO 1 TO WORK ON PAGE*/
    animation-name: head-up;
    animation-duration: 1.8s;
    animation-delay: .2s;
    animation-fill-mode: forwards;
    color: #ffffff;
    /*padding-left: 25px;*/
    text-align: center;
}
.heads-sm {
    top: 31px;
    left: 0px;
    /*margin: auto; /*center h1*/
    /*width: 50%; /*center h1*/
    opacity: 0;/*CHANGE TO 1 TO WORK ON PAGE*/
    animation-name: head-up;
    animation-duration: 1.8s;
    animation-delay: .2s;
    animation-fill-mode: forwards;
    color: #ffffff;
    text-align: center;
}
@keyframes head-up {
    0% { 
        opacity: 0;
        transform: translateY(0);
    }
    100% {
        opacity: 1;
        transform: translateY(-30px);
    }
}