h1,
h2,
h3 {
    font-family: Merriweather;
    margin-top: 10px;
    margin-bottom: 10px;
}

.container {
    background-color: #f8f2eb;
    color: #505050;
    font-family: Muli;
}

.navigation-area {
    width: 100%;
}

.navigation-bar {
}

body {
    background-image: url('../images/dynamic-style.png');
}

.container a {
    color: #c20000;
}

.footer-area {
    background-color: #f8f9fa;
    margin-top: 15px;
}

header {
    display: grid;
    grid-template-columns: [header-background-start] 5% 1fr 5% [header-background-end];
    grid-template-rows: minmax(200px, auto);
    grid-template-areas: '. header-title .';
    width: 100%;
}

.header-title {
    grid-area: header-title;
    text-shadow: 5px 5px 6px #000000;
    justify-self: center;
    align-self: center;
    color: #fdfdfd;
    font-size: 4.5em;
}

.header-background-image {
    grid-column-start: header-background-start;
    grid-column-end: header-background-end;
    grid-row-start: 1;
    grid-row-end: 2;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.btn {
    color: #ffffff;
    margin: 4px;
}

.card {
    background-color: #efefef;
}

.card p {
    margin-bottom: 0px;
    font-style: italic;
}

@media (max-width:575px) {
    .header-title {
        font-size: 2.5em;
    }
}

.quicklink {
    line-height: 1em;
    padding: 8px;
    margin: 5px 5%;
}

.quicklink .card-title {
    margin-bottom: 0px;
}

.badge-description {
    text-align: center;
}

.badge-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    grid-gap: 10px;
}

.badge-image {
    margin-left: 13px;
    margin-right: 13px;
    margin-top: 13px;
    align-self: center;
}

.badge-points {
    margin-bottom: 6px;
    box-shadow: 3px 3px 3px grey;
}

.hall-of-fame {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 3fr 2fr 1fr;
    grid-template-areas: '. rank student-name points .';
    grid-template-rows: auto;
}

.rank {
    grid-area: rank;
    align-self: center;
    text-align: right;
    font-size: 2em;
    margin-top: 0px;
    margin-bottom: 0px;
}

.student-name {
    grid-area: student-name;
    align-self: center;
    font-family: Merriweather;
    font-size: 2em;
    margin: 0 15px;
    line-height: 30px;
}

.hall-of-fame-points {
    grid-area: points;
    align-self: center;
    text-align: left;
    margin-bottom: 0;
    font-size: 1.4em;
    font-family: Merriweather;
    font-variant: small-caps;
    color: #7f4343;
    text-shadow: 1px 0px 2px;
}

.header-area {
    margin-bottom: 15px;
}

.post-description {
    grid-area: post-description;
}

.post-description-set {
    display: grid;
    grid-template-columns: 10px 2fr 6fr 2fr 10px;
    grid-gap: 5px;
    grid-template-rows: auto;
    grid-template-areas: '. post-badge post-description post-rubric .';
}

.post-rubric {
    grid-area: post-rubric;
    text-align: center;
}

@media (max-width:767px) {
    .post-description-set {
        display: flex;
    }
}

.post-badge {
    grid-area: post-badge;
    align-self: flex-start;
    justify-self: center;
    object-fit: contain;
    padding: 5px;
    width: 150px;
}

.post-rubric-button {
    background-color: #efefef;
    width: 150px;
}

@media (max-width:767px) {
    .post-badge {
        display: none;
    }

    .post-description {
        margin: 10px;
    }

    .post-rubric {
        margin-left: auto;
        margin-right: auto;
    }

    .post-rubric-button {
    }
}

.post-description-set li {
    margin-bottom: 5px;
}

.post-point-info {
    font-size: 1em;
}

.essential-question {
    border-left: 4px solid;
    padding-left: 8px;
    font-family: Muli;
    font-size: 1.4em;
    font-weight: bold;
    line-height: 1.2em;
}