@font-face {
    font-display: swap;
    font-family: 'FontWithASyntaxHighlighterLightOwl';
    src: url('/FontWithASyntaxHighlighterLightOwl-Regular.woff2') format('woff2');
    font-style: normal;
    font-weight: 400;
}

/* tilt-neon-regular - latin */
@font-face {
    font-display: swap;
    font-family: 'Tilt Neon';
    font-style: normal;
    font-weight: normal;
    src: url('/tilt-neon-v11-latin-regular.woff2') format('woff2');
}

/* funnel-sans-300 - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Funnel Sans';
    font-style: normal;
    font-weight: lighter;
    font-display: swap;
    src: url('/funnel-sans-v1-latin-300.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
  
/* funnel-sans-300italic - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Funnel Sans';
    font-style: italic;
    font-weight: lighter;
    font-display: swap;
    src: url('/funnel-sans-v1-latin-300italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
  
/* funnel-sans-regular - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Funnel Sans';
    font-style: normal;
    font-weight: 400;
    src: url('/funnel-sans-v1-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
  
/* funnel-sans-italic - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Funnel Sans';
    font-style: italic;
    font-weight: 400;
    src: url('/funnel-sans-v1-latin-italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

pre {
    overflow: scroll;
    border-radius: .5rem;
    background-color: rgb(240, 240, 240);
}

pre code {
    display: block;
    padding: 1rem;
}

code {
    font-family: "FontWithASyntaxHighlighterLightOwl", monospace;
    font-size: 1.1rem;
}

body {
    font-family: "Funnel Sans", serif;
    font-size: 1.3rem;
}

nav {
    margin: 1rem auto;
    padding-left: 2rem;
    padding-right: 2rem;
    margin-bottom: 4rem;
}

.pagination {
    margin: inherit;
    padding: 0.2rem;
}

.pagination-links {
    display: flex;
    justify-content: flex-start;
    column-gap: 0.1rem;
}

.pagination a {
    display: inline;
}

.name {
    font-size: 2.5rem;
}

.navigation-title {
    font-family: "Tilt Neon", serif;
    letter-spacing: .1rem;
    text-transform: uppercase;
    display: inline;
    font-size: 1.8rem;
    text-decoration: none;
}

.navigation-title:link, .navigation-title:visited, .navigation-title:active {
    text-decoration: none;
    color: black;
}

.navigation-title:hover {
    text-decoration: underline;
    color: black;
}

.menu-toggle {
    display: none;
    float: right;
}


@media screen and (min-width: 701px) {
    .menu-toggle-button {
        display: none;
    }

    header nav{
        display: inline;
    }

    .navigation-list {
        float: right;
    }

    .navigation-item {
        float: left;
        margin: 0;
        position: relative;
    }

    main {
        max-width: 70%;
    }

    div.album figure img {
        width: 128px;
        height: auto;
    }
    
    div.album-details {
        padding: 15px;
        text-align: center;
    }

    div.album {
      margin: 5px;
      border: 1px solid #ccc;
      float: left;
      min-width: 210px;
      max-width: 210px;
      flex-basis: 18%;
    }
    
    span.genre-text {
        font-size: 0.9rem;
    }
    
    span.year-text {
        font-size: 0.9rem;
    }
}
  
@media screen and (max-width: 700px) {
    .menu-toggle:checked ~ .menu-toggle-button {
        content: url(/images/burger-close.svg);
    }

    .menu-toggle-button {
        display: block;
        float: right;
        width: 2rem;
        height: auto
    }

    .menu-toggle-button:before {
        content: url(/images/burger-open.svg);
    }

    .menu-toggle:checked ~ .sitenav {
        display: contents;
    }

    header nav{
        display: none;
    }

    .navigation-list {
        display: grid;
    }

    .navigation-item {
        grid-template-columns: 1fr 1fr 1fr;
        text-align: center;
    }

    main {
        max-width: 90%;
    }

    div.album figure img {
        width: 80px;
        height: auto;
    }
    
    div.album-details {
        padding: 3px;
        text-align: center;
    }

    div.album {
      margin: 3px;
      border: 1px solid #ccc;
      float: left;
      min-width: 160px;
      max-width: 160px;
      flex-basis: 18%;
    }
    
    span.genre-text {
        font-size: 0.9rem;
    }
    
    span.year-text {
        font-size: 0.9rem;
    }
}

.navigation-list {
    list-style: none;
    margin-bottom: 0;
    margin-top: 0;
    padding: 0;
}

.navigation-item {
    float: left;
    margin: 0;
    position: relative;
}

.navigation-link {
    margin-left: 1rem;
    margin-right: 1rem;
    font-size: 1.2rem;
}

.navigation-link:link, .navigation-link:visited, .navigation-link:active {
    text-decoration: none;
    color: black;
}

.navigation-link:hover {
    text-decoration: underline;
    color: black;
}

main {
    margin: auto;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

article {
    margin-left: 2rem;
    margin-right: 2rem;
}

.permalink:link, .permalink:visited, .permalink:active {
    text-decoration: none;
    color: black;
}

.permalink:hover {
    text-decoration: underline;
    color: black;
}

table, th, td {
    border: 1px solid;
}

table {
    overflow: scroll;
    display: block;
}

.title {
    margin-left: 2rem;
}

.about {
    text-align: center;
    margin-bottom: 5rem;
}

.avatar img {
    clip-path: circle(50% at 50% 50%);
}

footer {
    width: 100%;
    text-align: center;
    font-size: 1rem;
    line-height: 0.9rem;
    margin-bottom: 1rem;
}

section.album-reel {
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
}

div.album:hover {
  border: 1px solid #777;
}
