body {
    background-color: black;
    color: white;
    font-family: 'Courier New', Courier, monospace;
    max-width: 650px;
    margin: auto;
    padding: 10px;
    overflow-y: scroll;
}
h1 {
    text-align: center;
}
a {
    color:rgb(120, 223, 223);
    text-decoration: underline;
}
.buttons img {
    width: 88px;
    height: 31px;
    image-rendering: pixelated;
    transition: transform 0.2s ease-in-out;
}
.buttons img:hover {
    transform: scale(1.1);
    outline: 1px solid white;
}
.webring {
    text-align: center;
    margin-top: 20px;
}
.links {
    display: flex;
    flex-direction: column;
    gap: 0px;
}
.link-row {
    display: flex;
    align-items: baseline;
    gap: 5px;
    /* cursor: pointer; */
    padding: 2px 0;
}
.link-row:hover {
    background-color: rgba(64, 151, 151, 0.1);
}
.links .label {
    display: inline-block;
    width: 80px;
    text-align: right;
    color: white;
    text-decoration: none;
}
.section-title {
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 5px;
    font-size: 1.2em;
}
details {
    margin-bottom: 10px;
    padding: 10px;
    background-color: rgba(64, 151, 151, 0.1);
    border-radius: 5px;
}
summary {
    cursor: pointer;
}
#radioImage {
    max-width: 55%;
    height: auto;
    margin-top: 10px;
    border-radius: 5px;
    display: block;
}
.subtext {
    font-size: 0.9em;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 5px;
}
@media (max-width: 600px) {
    #radioImage {
        max-width: 100%;
    }
}