body {
    margin: 0px;
    font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

.sidebar {
    margin: 0px;
    padding: 16px;
    width: 200px;
    background-color: #9DB2BF;
    position: fixed;
    height: 100%;
    overflow: auto;
}

.sidebar h1 strong {
    display: block;
    font-size: 66%;
    opacity: 0.75;
}

.sidebar a {
    display: block;
    color: black;
    font-weight: bolder;
    padding: 4px;
    text-decoration: none;
}

.sidebar a.active {
    background-color: #04AA6D;
    color: white;
}

.sidebar a:hover:not(.active) {
    background-color: #555;
    color: white;
}

div.content {
    margin-left: 232px;
    padding: 1px 16px;
    height: 1000px;
}

.grid {
    display: grid;
    justify-content: space-evenly;
    grid-template-columns: repeat(auto-fit, minmax(208px, 1fr));
    grid-auto-flow: row;
}
.grid-item {
    margin: 2px;
    padding: 5px;
    border-spacing: 2px;
    border-style: groove;
    border-radius: 15px;
    min-width: 200px;
    max-width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.grid-item h3 {
    margin: 0px;
    font-weight: bold;
    letter-spacing: 0.5px;
}

.grid-item .small-text {
    margin: 0px 0px 0px 5px;
    font-size: small;
    font-weight: bold;
    opacity: 75%;
}

.grid-item img {
    max-height: 100%;
    max-width: 100%;
}

@media screen and (max-width: 700px) {
    .sidebar {
        width: 100%;
        height: auto;
        position: relative;
        display: inline-block;
    }
    .sidebar-links {
        display: flex;
        float: left;
    }
}
