body {
    font-family: 'Montserrat', sans-serif;
    background: #2A2A2A;
    color: #1f1f1f;
    padding: 0px;
}

.container h1,
.container h2,
.container h3,
.container h4,
.container h5,
.container h6,
.container p,
.container a
{
    color:#fff;
}

.background-image {
    background-image: url(jrn_background.png);
    background-size: cover;
    height: 450px;
    background-position: 0px 84%;
    position: relative;
}

.background-image::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #2a2a2a82; /* adjust opacity */
    /* white overlay @ 50% opacity */
}

.background-image h1 {
    color:#6ea963;
    letter-spacing: 3px;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
}

.logo-wrapper {
    background:#fff;
    padding:15px 0px;
}

.logo {
    max-width: 380px;
    width: 100%;
    opacity: 0;
    animation: slideDown 0.9s ease-out forwards;
}

.about {
    max-width: 780px;
    margin: 30px auto 20px;
    font-size: 1.1rem;
    line-height: 1.7;
    text-align: center;
    opacity: 0;
    animation: fadeIn 1.5s ease-out forwards;
}

.about h1 {
    /* color:#7FAE42; */
}

.contact a {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact a:hover {
    color: #fff;
}

footer {
    margin-top: 50px;
    background: #ffffff;
    padding: 25px 10px;
}

footer img {
    max-height: 60px;
    margin: 10px 25px;
    opacity: 1;
    transition: opacity 0.3s ease;
}

footer img:hover {
    
    opacity: 0.85;
}

.fade-in {
    opacity: 0;
    animation: fadeIn 1.0s ease-out forwards;
}

.fade-in-delayed {
    opacity: 0;
    animation: fadeIn 1.0s ease-out forwards;
    animation-delay: 0.3s;
}

.fade-in-delayed-2 {
    opacity: 0;
    animation: fadeIn 1.0s ease-out forwards;
    animation-delay: 0.4s;
}

.fade-in-delayed-3 {
    opacity: 0;
    animation: fadeIn 1.0s ease-out forwards;
    animation-delay: 0.5s;
}

.slide-down {
    animation: slideDown 0.5s ease-out forwards;
}

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

@keyframes slideDown {
    0% { opacity: 0; transform: translateY(-20px); }
    100% { opacity: 1; transform: translateY(0); }
}
