body {
    font-family: "Space Mono", sans-serif;
    margin: 0;
    padding: 0;
}

p, h1, h3, a, ul {
    font-family: "Space Mono", sans-serif;
    color:  #212121
}

.small {
    font-size: 12px;
    color: #707070;
}

.sidenote {
    font-size: 12px;
    border-left: 4px solid #aaa;
    padding: 2px 0px 2px 10px;
    margin-bottom: 5px;
}

h3 {
    font-family: "Space Mono", sans-serif;
    color:  #212121;
    font-size: 22px;
    text-align: center;
}

h1 {
    font-size: 26px;
    text-align: center;
    color: #212121;
    font-weight: bold;
}

p, a, ul {
    font-size: 15px;
}

a {
    color: blue
}

.blog {
    width: 50%;
    margin: 20px auto;
}

.blog .date {
    font-size: 12px;
    color: #707070;
    margin-bottom: 0px;
    margin-top: 0px;
    text-align: center;
}

.emphasize {
    font-size: 14px;
    border-left: 4px solid #aaa;
    border-right: 4px solid #aaa;
    padding: 2px 0px 2px 10px;
    margin-bottom: 5px;
    text-align: center;
}

table {
    width: 60%;
}

.back-button {
    color: #707070;
}

.links {
    text-align: center;
    align-items: center;
}

.inline-img {
    width: 100%
}

.audio-section {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 20px 0;
}

.audio-item {
    background: #f5f5f5;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
}

.audio-item p {
    margin: 0 0 10px 0;
    font-weight: bold;
    font-size: 14px;
}

.audio-item audio {
    width: 100%;
    margin: 0 auto;
}

/* Make the first two items (noisy input and clean target) span full width */
.audio-item:nth-child(1),
.audio-item:nth-child(2) {
    grid-column: 1 / -1;
}