/* ===============General=============== */
body{
    background-color: rgb(253,251,212);
}

.site-title {
    background: rgb(128,239,128);
    color: black;
    text-align: center;
    font-family: Arial, sans-serif;
    font-size: 44px;
    font-weight: 800;
    letter-spacing: 1px;
    padding: 14px 10px;
}

.navigation_bar {
    background: #9D9DCC;
    padding: 14px 0;
    display: flex;
    justify-content: center;
    gap: 18px;
    border-top: 4px solid #C6A664;
    align-items: center;
}

.navigation_bar a {
    text-decoration: none;
    font-family: Arial, sans-serif;
    background: #002E5D;
    color: #FFFFFF;
    padding: 8px 14px;
    border: 2px solid #1B1B1B;
    border-radius: 3px;
    box-shadow: 0 2px 0 rgba(0,0,0,0.35);
    transition: transform 0.12s ease, background-color 0.12s ease;
}

.navigation_bar a.active {
    background: #FFFFFF;
    color: #111111;
    border-color: #FFFFFF;
}

footer {
    margin-top: 40px;
    padding: 18px 10px 22px;
}

.img_format {
    max-width: 90%; /* This is a new CSS property not used in Lab 1 */
    display: block;
    margin: 1rem auto;
    object-fit: cover;
}

.center_text {
    text-align: center;
    font-size: 24px;
    
}

#uppercase {
    text-transform: uppercase; /* This is a new CSS property not used in Lab 1 */
}