*  {font-family: "Verdana", "Courier New", monospace;}
* a{text-decoration:none; color: black;}


/* main header, logo, and topnav */
.main-header-container {
    position: sticky;
    top: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-height: 250px;
    background-color: #ffffff;
}
.main-header-container a {
    background-color: #fff;
    color:#000;
}
.main-header-container a:hover {
    background-color: #000;
    color:#fff
}
.main-header-logo{
    display: block;
}
.main-header-topnav {
    display: block;
}
.dropdown-content {
    position: absolute;
    display: none;
}   
.dropdown-content a{display: block}
.dropdown:hover .dropdown-content{display: block;}
.navlink {
    text-decoration: none;
    display: inline-block;
}

/*image header*/
.image-header {
    display: block;
    min-height: 400px;
    background-size: cover;
    background-position: center top;
    
}

/*main feed*/
.main-feed-container {
    display: flex;
    justify-content: space-between;
    width: 100%;
    background-color: #ffffff;
}

/* side feed */
.side-feed-container {
    display: block;
    margin-right: 10%;
    width: 25%;
    background-color: #ffffff;
    border: #000 1px solid;
}
.side-feed-content-container {
    display: block;
    margin-left: 2%;
    margin-right: 2%;
}
.side-feed-entry-header {
    display: block;
    margin-left: 2%;
    margin-right: 2%;
}

/*entry feed*/
.entry-feed-container {
    display: inline-block;
    margin-left: 10%;
    width: 50%;
    background-color: #ffffff;
}

/* blog entry thumbnail */
.entry-thumbnail-container {
    display: block;
    justify-content: space-between;
    margin-top: 20px;
    align-items: center;
    width: 100%;
    background-color: #ffffff;
}
.entry-thumbnail {
    display: inline-block;
    justify-content: space-between;
    align-items: center;
    width: 95%;
    background-color: #ffffff;
}
.entry-thumbnail-header {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    background-color: #000;
}
.entry-thumbnail-header h5 {
    color: #fff;
}
.entry-thumbnail-content-container {
    display: flex;
    justify-content: space-between;
    width: 100%;
    height: 200px;
}
.entry-thumbnail-photo {
    display: block;
    width: 30%;
    max-height: 195px;
}

.entry-thumbnail-snippet {
    display: block;
    height: 195px;
    width: 60%;
    overflow-wrap: normal;
    margin-right: 5px;
}

/* blog entry */
.entry-content-container {
    display:flex;
    justify-content: center;
    align-items: center;
    width:50%;
    margin-left: auto;
    margin-right: auto;
    
}
.entry-content p{
    display:block;
    margin-top:20px;
    width: 80%;
    justify-content: center;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
}
.entry-content img{
    display:block;
    margin-top:20px;
    width: 80%;
    height: auto;
    justify-content: center;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
}