@import url('https://fonts.googleapis.com/css?family=Lato:400,700');

/* ********************************
Base
************************************/
.navbar-dark {
    background: rgba(0,0,0,0.6);
} 

#content {
    padding-top: 5em;
}
/* ********************************
Landing
************************************/

.bg-image{
    /* background-position: 58.33325% center; */
    background-size: cover;
    background-position: 45% 30%;
    height: 100vh;
}


#landing-message {
    position: absolute;
    top: 38%;
    width: 100%;
    font-family: 'Lato', sans-serif;
    color: white;

    opacity: 0;
    transform: translateY(15px);
    animation: fadeUpAnimation 1.5s ease-in-out forwards;
}

#landing-message h1{
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: .2rem;
    text-shadow: .1rem .1rem .8rem black;
    padding-bottom: 1rem;
}

#landing-message h3{
    font-size: 2rem;
    text-shadow: .1rem .1rem .5rem black;
    padding-bottom: 1.6rem
}

@keyframes fadeUpAnimation {
    0% {
        opacity: 0;
        transform: translateY(15px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}