strong {
  font-weight: 700;
}

.menu {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.menu.hidden {
    display: none;
}


ul.social-list {
    display: inline;
    list-style: none;
    margin: 0;
}

@media (min-width:684px) {
    ul.social-list {
    }
}

ul.social-list li {
    display: inline-block;
}

.fab {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.social-link {
    font-size: 1.333em;
}

.footer div.git {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}


.footer .git-info {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

a.github {
    text-decoration: none;
}


@media (min-width:684px) {
    .footer div.git {
        flex-direction: column;
        align-items: center;
    }
    .footer .git-info {
        justify-content: center;
        align-items: center;
    }
}


.layloo-attribution {
    display: inline;
    vertical-align: middle;
}

.footer .copyright {
    text-align: center;
    flex-wrap: wrap;
    justify-content: center;
    list-style-type: none;
}


/*
 * h-card
*/

.footer .h-card {
    display: grid;
    grid-template: 'image text';
    grid-template-columns: 1fr 1fr;
    align-items: center;
    justify-content: center;
    padding: 1em;
    margin: 0 auto;
    gap: 5%;
    box-shadow: 0 2px 2px #ccc;
    border: solid white;
}

.footer .h-card .info {
    grid-area: text;
    word-wrap: break-word;
}

@media (max-width:350px) {
    .footer .h-card .info {
        word-wrap: anywhere;
    }
}

.footer .h-card .image-container {
    grid-area: image;
}
.footer .h-card img {
    border-radius: 50%;
    object-fit: contain;
}
