/* Custom styles */
body {
    font-family: 'Poppins', sans-serif;
}

b {
    color: #d26000;
}

h2 {
    color: #fea75e;
}

.banner {
    position: relative;
    background: url(church-banner.jpg) no-repeat;
    background-size: cover;
    min-height: 500px;
    background-position: center center;
}

.banner h1,
.banner h2 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 3.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    text-align: center;
    border-width: 20px;
    padding: 50px;
    border-color: rgb(254, 167, 94);
    border-style: solid;
    background: #0000008a;
}

.banner p {
    position: absolute;
    bottom: 1px;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    text-align: center;
    border-width: 4px;
    padding: 10px;
    border-color: rgb(254, 167, 94);
    border-style: solid;
    background: #000000b8;
}

@media (max-width: 500px) {
    .banner {
        background-position: center right;
    }
    .banner h1 {
        font-size: 2rem;
    }
}

.contact {
    padding: 50px 0;
}

.about {
    background-color: #f4f4f4;
    padding: 50px 0;
    text-align: center;
}

footer {
    background-color: #333;
    color: white;
    padding: 20px 0;
    text-align: center;
}

/* Bootstrap overrides*/
.btn-primary {
    background-color: #fea75e;
}
.btn-primary:hover {
    background-color: #d26000;
}

.btn, .btn-lg {
    border-radius: 0;
}
