#titleBlocker {
    display: block;
    width: 70%;
    height: 50px;
    background-color: white;
    position: absolute;
    top: 0px;
    /* start at top of parent */
    left: 0px;
    z-index: 5;

    animation: titleUnblock 2s ease-out forwards;
}

@keyframes titleUnblock {
    from {
        transform: translateY(0px);
    }

    to {
        transform: translateY(-100px);
    }
}

#subheader {
    opacity: 0;
    animation: fadeOut 2s ease-in;
    animation-fill-mode: forwards;
    animation-delay: 2s;

}

@keyframes fadeOut {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

#Intro {
    width: 80%;
    border-radius: 10px;
}

#Project1 {
    background-color: rgba(206, 249, 255, 0.166);
    border-radius: 10px;
    width: 90%;
    padding: 5%;
}


#mobileImage {
    width: 70%;
    height: auto;
}

#mobileImageSubtext {
    width: 70%;
}










@media (max-width: 768px) {
    #Project1 {
        width: 80%;
    }

    #Intro {
        width: 100%;
        border-radius: 0px;
    }

    #mobileImage {
        width: 100%;
        height: auto;
    }

    #mobileImageSubtext {
        width: 100%;
    }
}