html, body {
    margin: 0;
    background: whitesmoke;
}

header {
    margin: 0 auto;
    width: 100%;
    max-width: 1200px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: whitesmoke;
}

section {
    margin: 0 auto;
    background: white;
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 2px, rgba(0, 0, 0, 0.07) 0px 2px 4px, rgba(0, 0, 0, 0.07) 0px 4px 8px, rgba(0, 0, 0, 0.07) 0px 8px 16px, rgba(0, 0, 0, 0.07) 0px 16px 32px, rgba(0, 0, 0, 0.07) 0px 32px 64px;
}

main {
    padding: 25px;
}

h1, h2, p, ul {
    font-family: Arial, sans-serif;
}

h1 {
    color: white;
    font-family: 'Times New Roman', Times, serif;
    font-size: 50px;
    padding: 25px 10px;
    text-shadow: 2px 1px 4px rgba(0, 0, 0, 1);
    z-index: 2;
}

h2 {
    color: #3A77BC;
    text-align: center;
}

p {
    text-align: center;
    max-width: 1000px;
}

p.bible {
    color: #BD332A;
}

@media screen and (max-width: 500px){
    h1 {
        font-size: 40px;
    }
}