*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    font-family: var(--font-jost), sans-serif;
    font-size: 20px;
    max-width: 800px;
    margin: 2rem auto;

    color: #fff;
    background: #697a21;
}

@media only screen and (max-width: 600px) {
    body {
        background: #fff;
        margin: auto;
    }
}

h1,
h2,
h3 {
    color: #c8603b;
}

a {
    color: #0c0a3e;
    text-decoration-style: dotted;

    &:hover {
        text-decoration-style: solid;
    }

    img {
        border: 1px dotted #0c0a3e;

        &:hover {
            border: 1px solid #0c0a3e;
        }
    }
}

dt {
    font-weight: bold;
}

audio {
    width: 100%;
}

img {
    border-radius: 4px;
    max-width: 100%;
    height: auto;
    margin-bottom: 1rem;
}

iframe {
    border-radius: 4px;
    box-shadow: 2px 2px 8px #333;
    background: #303030;
}

.container {
    max-width: 800px;
    margin: auto;
    background: #fff;
    color: #1e2631;
    padding: 32px;
    min-height: 100vh;
    box-shadow: 2px 2px 4px #00000099;
}

.song {
    border-bottom: 2px solid #c8603b;
    padding-bottom: 2rem;
    margin-bottom: 2rem;
}

.tag {
    font-size: 0.8rem;
    background: #5d6b66;
    color: #c9c2c8;
    padding: 4px;
    border-radius: 4px;
}

ul.nav {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

ul.nav li {
    display: inline;
    margin-left: 0.5rem;
    margin-right: 0.5rem;
}

.center {
    text-align: center;
}

.float-end {
    float: right;
}

.right {
    text-align: right;
}

.iframe-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio (divide 9 by 16 = 0.5625) */
    margin-top: 1rem;
}

.responsive-iframe {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
}

.article-date {
    text-align: right;
    font-size: 0.9rem;
}

.row {
    display: flex;
    flex-direction: row;
}

@media only screen and (max-width: 600px) {
    .row {
        flex-direction: column;
    }
}

.row .col {
    padding: 8px;
}
