html, body {
    padding: 0;
    margin: 0;
  }
* {
    list-style-type: none;
}
.nav {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    background-color: #333;
    opacity: .7;
    color: white;
}
.nav .menu li a {
    color: white;
    text-decoration: none;
}
.nav .menu>li:hover {
    background-color: #111;
}

.nav .menu {
    position: relative;
    top:0;
    right: 0;
    float: right;
    margin: 0;
    padding: 0;
} 
.nav .menu>li {
    float: left;
    color: white;
    width: 140px;
    height: 30px;
    line-height: 30px;
    cursor: pointer;
    font-size: 17px;
    text-align: center;
}
.nav .menu .subMenu {
    transform: scale(0);
    transform-origin: top center;
    transition: all 300ms ease-in-out;
    padding-left: 0;
}
.nav .menu .subMenu li {
    font-size: 14px;
    background: rgba(0, 0, 0, 0.8);
    padding: 8px 0;
    color: white;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    transform: scale(0);
    transform-origin: top center;
    transition: all 300ms ease-in-out;
    width: 200px;
}
.nav .menu .subMenu li:last-child {
    border-bottom: 0;
}
.nav .menu .subMenu li:hover {
    background: black;
}
.nav .menu>li:hover .subMenu li {
    transform: scale(1);
}
.nav .menu>li:hover .subMenu {
    transform: scale(1);
}

.container {
    width: 100%;
}

.heroHeader {
    height: 400px;
    width: 100%;
    background-color: rgb(41, 38, 38);
    font-size: 2em;
    display:flex;
    justify-content: center;
    align-items: center;
    background-position: right;
    background-size: contain;
    overflow: hidden;
    
}

.heroHeader img{ 
    max-width: 100%;
    object-fit: cover;
}   
.heroHeader .header {
    position: absolute;
    max-width: 33%;    
}

.heroHeader .header .headline {
    text-align: center;
    color: white;
    font-weight: bold;
}
.heroHeader .header .subtitle {
    margin-top: 10px;
    text-align: center;
    font-size: .5em;
    color: white;
    font-weight: bold;
}

.container .updates {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 40px;
}
.container .updates .updatesContainer {
    margin-top: 40px;
    width: 40%;
    max-width: 40%;
    background-color: lightgray;
    border-radius: 10px;
    border: 1px solid black;
}

.container .updates .updatesContainer .updateHeading {
    text-align: center;
    font-weight: bold;
    margin-bottom: 5px;
    margin-top: 10px;
}
.container .updates .updatesContainer .updatePostDate {
    font-style: italic;
    font-size: .6em;
    text-align: center;
    margin-bottom: 10px;
}
.container .updates .updatesContainer .updateEntryLink {
    margin-left: 10px;
    margin-bottom: 10px;
}

.container .updates .updatesContainer .updateSubtitle {
    margin-left: 10px;
    margin-right: 10px;
}

.container .updates .updatesContainer .updatecopyText {
    margin-left: 10px;
    margin-right: 10px;
}

@media only screen and (max-width: 597px) {
    .container .updates .updatesContainer {
        margin-top: 40px;
        width: 95%;
        max-width: 95%;
        background-color: lightgray;
        border-radius: 10px;
        border: 1px solid black;
    }
    .heroHeader .header {
        max-width: 95%;        
    }    

    .nav .menu .subMenu {
        transform: scale(0);
        transform-origin: top center;
        transition: all 300ms ease-in-out;
        padding-left: 0;
        max-height: 300px;
        width: 500px;
        overflow: scroll;
    }
    .heroHeader img {
        min-height: 100%;
    }

}