/*
Palette (picker with coolors.co):

#f7f9f9 (white-ish) RGB: 247,249,249
#b4e1ff (uranian blue) RGB: 180,225,255
#048ba8 (blue munsell) RGB: 4,139,168
#424651 (charcoal) RGB: 66,70,81
#262322 (raisin black) RGB: 38,35,34
*/




* {
  box-sizing: border-box;
}

html{
    top: 0;
    left: 0;
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;

    display: flex;
    justify-content: center; /* horiz */
    align-items: center; /* vert */
    background-color: #424651;
}

body {
    padding-bottom: 0;
    font-family: 'Quicksand';
    letter-spacing: 0.025em;
    top: 0;
    width:480px;
    font-size: 16px;
}

#header{
    display: flex;
    justify-content: center; /* horiz */
    align-items: center; /* vert */
    font-size: 18px;
}
#header a{
    text-decoration: none;
    cursor: pointer;
    color:inherit;
}
#header a:hover {
    text-decoration: underline;
}

#logo_wrapper{
    width: 80px;
    height: 80px;
    display: inline-block;
}

#content {
    background-color: #424651;
}

#footer {
    text-align: center;
    background-color: #424651;
    color: #b4e1ff;

    display: flex;
    justify-content: center; /* horiz */
    align-items: center; /* vert */
}

#article_list{
    margin-top: 0;
    margin-bottom: 8px;

    display: grid;
    /* column-gap: 0px; */
    row-gap: 24px;
    grid-template-columns: 100%;
    grid-template-rows: auto;
}

.article_card{
    width: auto;
    display: flex;
    justify-content: center; /* horiz */
    align-items: center; /* vert */
    display: flex;
    justify-content: left;
    align-items: center; /* vert */
    /* box-shadow: 0px 0px 5px 3px #424651; */
    /* box-shadow: h-offset v-offset blur spread color |inset|initial|inherit; */
    height: 192px;
}
.article_thumbnail_container{
    height: 192px;
    max-height: 192px;
    display: flex;
    justify-content: center; /* horiz */
    align-items: center; /* vert */
}

.article_thumbnail_container img{
    max-width:100%;
    max-height:100%;
    /* box-shadow: 0px 0px 5px 3px #424651; */
    /* border: 5px solid #424651; */
}
.article_description{
    background-color: #f7f9f9;
    width: 344px;
    height: inherit;
    /* border: 5px solid pink; */
    padding-right: 16px;
    padding-left: 16px;
    line-height: 1.28em;

    display: flex;
    justify-content: left; /* horiz */
    align-items: center; /* vert */
}

.standard_padding{
    padding-left: 32px;
    padding-right: 32px;
    padding-top: 8px;
    padding-bottom: 8px;
}

.section_title{
    width: 100%;
    font-size: 1.4em;
    font-weight: bold;
    font-variant: small-caps;
    text-align: left;
    background-color: #424651;
    color: #b4e1ff;
    padding-top: 8px;
    padding-bottom: 8px;
}
