body {
    animation: fadeInAnimation ease 1s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color:#fff;
}

a {
    color:#fff; text-decoration: none;
}

article {
    margin-top: 10px;
    margin-left: 5%;
    margin-right: 5%;
    color:#000;
    text-align:justify;
}

article p a {
    color:#264aa5;
}

h1 {
    text-align: center
}

h4 {
     margin-top: 1.5em
}

h5 a {
    color: #666;    
}

input {
    text-align: right;
}

p p {
    padding-left: 20px;
    padding-right: 20px;
}

.table-header {
    background-color:#776666;
    color: #fff;
    text-align: center;
}

.blue {
    color: blue;
}

.green {
    color: green;
}

.red {
    color: red;
}

.articleLink {
    color: #666;
    text-decoration: none;
}

.author {    
    padding-bottom: 1em;
    text-align: center;
}

.BLBST_a {
    font-size: 10px;
    vertical-align: super;
}

.bottomNavLeft {
    padding-left: 1em;
    padding-bottom: 1em;
    color: #666;
}

.bottomNavRight {
    padding-right: 1em;
    padding-bottom: 1em;
    float: right;
    color: #666;
}

.clearButton {
    background-color: #fff;
    border-style: none;
    text-align: left;
}

.divConfession {
    font-weight: bold; 
    position: absolute; 
    top: 20px; left: 20px;
}
.divConfession:hover {
    cursor: pointer;
}
.divConfession a {
    text-decoration: none;
    color:#fff;
}

.divCommandments {
    font-weight: bold; 
    position: absolute; 
    top: 20px; right: 20px;
}

.divCommandments:hover {
    cursor: pointer;
}
.divCommandments a {
    text-decoration: none;
    color:#fff;
}

.divJesusImage {
    text-align: center; 
    position: relative; 
    margin-top: 5rem;
}

.divFaithOnceDelivered {
    text-align: center; 
    position: relative; 
    font-weight: bold;
    font-size: 1.5em;
}

.divFaithOnceDelivered div {
    font-size: .75em;
}

.link {
    color:#fff; 
    text-decoration: none;
}

.navigation {
    width: 100%; 
    height: 2em;     
    background-image: linear-gradient(180deg, #ddd8d7 0%, #776666 35%, #946a6c 100%); 
    color:#fff; 
    text-align: center;
}

.redletter {
    color: red;
}

@media screen and (min-width:1600px) {
    article {
        margin-top: 10px;
        margin-left: 25%;
        margin-right: 25%;
        color:#000;
        text-align:justify;
    }
}

@media screen and (min-width:1024px) {
    article {
        margin-top: 10px;
        margin-left: 20%;
        margin-right: 20%;
        color:#000;
        text-align:justify;
    }
}

@media only screen and (max-width: 400px) {
    a.link {
        color:#fff;
        text-decoration: none;
        font-size: .5rem;
    }

    .clearButton {
        background-color: #fff;
        border-style: none;
        text-align: left;
        font-size: .8em;
        text-decoration: underline;
    }
}

@media only screen and (max-width: 600px) {
    table, th, td {
        font-size: 10px; /* Adjust font size for small screens */
    }
    /* Example: Hide some columns */
    td:nth-child(2), th:nth-child(2), td:nth-child(5), th:nth-child(5), td:nth-child(8), th:nth-child(8) { 
        display: none; /* Hide the third column on small screens */
    }
}

@keyframes fadeInAnimation {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}