/* Default styling */
*
{
    box-sizing: border-box;
}



/* Header Bar */
.header_nav 
{
    background-image: url('dipdap_brand.jpg');
    min-height: 180px;
    background-position: center;
    background-repeat: none;
    background-size: cover;
}

.header_nav > h2
{
    font-size: 26px;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    text-shadow: 2px 2px white;
}

@media screen and (max-width: 500px) {
    .header_nav > h2 {
        display: none;
        visibility: hidden;
        opacity: 0;
    }
}


.header_nav > img
{
    height: 200px;
    margin-top: 0px;
}

@media screen and (max-width: 500px) {
    .header_nav > img {
        display: none;
        visibility: hidden;
        opacity: 0;
    }
}
    


/* Unordered List Items */
ul
{
    list-style: none;
    display: flex;
    justify-content: space-around;
}

@media screen and (max-width: 500px) {
    ul {
        margin-top: 60px;
    }
}

li {
    font-size: 25px;
    font-style: normal;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
}

a {
    text-decoration: none;
    color: black;
    text-shadow: 2px 2px #d9b9a7;
    cursor: pointer;
}