* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 20px;
    background: #000000;
    color: #ff4fcf;
    font-family: "Times New Roman", Times, serif;
    font-size: 18px;
    line-height: 1.3;
}

/* links */

a {
    color: #ff4fcf;
    text-decoration: underline;
}

a:visited {
    color: #d438aa;
}

a:hover {
    color: #ffffff;
}

/* header */

header {
    margin-bottom: 20px;
}

h1 {
    margin: 0;
    font-size: 56px;
    font-weight: normal;
}

header p {
    margin: 4px 0 0;
}

/* nav */

nav {
    margin-bottom: 20px;
}

nav a {
    margin-right: 12px;
}

/* blinkies */

.blinkies {
    margin-bottom: 25px;
}

.blinkies img {
    height: 20px;
    margin-right: 4px;
    vertical-align: middle;
    image-rendering: pixelated;
}

/* sections */

section {
    margin-bottom: 35px;
}

h2 {
    margin: 0 0 15px;
    font-size: 28px;
    font-weight: normal;
}

/* releases */

.grid {
    display: block;
}

.card {
    display: block;
    width: 220px;
    margin-bottom: 25px;
    color: #ff4fcf;
    text-decoration: none;
}

.card img {
    display: block;
    width: 220px;
    height: auto;
    margin-bottom: 8px;
}

.card h3 {
    margin: 0 0 4px;
    font-size: 20px;
    font-weight: normal;
}

.card p {
    margin: 0 0 4px;
}

.card span {
    display: block;
}

/* artist list */

.artist-list a {
    display: block;
    margin-bottom: 8px;
}

/* catalog */

.catalog {
    list-style: none;
    padding: 0;
    margin: 0;
}

.catalog li {
    margin-bottom: 6px;
}

/* release archive page */

.release-list {
    display: block;
}

.release-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
    color: #ff4fcf;
    text-decoration: none;
    max-width: 500px;
}

.release-row img {
    width: 95px;
    height: 95px;
    object-fit: cover;
}

.release-row h3 {
    margin: 0 0 4px;
    font-weight: normal;
}

.release-row p {
    margin: 0 0 4px;
}

/* mascot */

.corner-image {
    position: fixed;
    right: 0;
    bottom: 0;
    width: 180px;
    pointer-events: none;
    image-rendering: pixelated;
    z-index: 999;
}

/* footer */

footer {
    margin-top: 40px;
    padding-bottom: 20px;
}

.footer-links {
    margin-top: 8px;
}

/* phones */

@media (max-width: 700px) {
    body {
        padding: 15px;
    }

    h1 {
        font-size: 42px;
    }

    .card,
    .card img {
        width: 180px;
    }

    .corner-image {
        width: 130px;
    }

    .release-row {
        flex-direction: column;
    }

    .release-row img {
        width: 120px;
        height: auto;
    }
}

iframe {
    max-width: 100%;
    background: white;
}

.logo {
    display: block;
    width: 250px;
    height: auto;
    margin-bottom: 8px;
}

@media (max-width: 700px) {
    .logo {
        width: 280px;
    }
}

/* homepage logo */

.logo {
    display: block;
    width: 180px;
    height: auto;
    margin-bottom: 8px;
}

/* smaller logo on other pages */

.logo-small {
    display: block;
    width: 110px;
    height: auto;
    margin-bottom: 12px;
}

.logo-small:hover {
    opacity: 0.8;
}

.grid {
    display: flex;
    gap: 20px;
    justify-content: flex-start; /* align to the left */
    flex-wrap: nowrap;
}

.card {
    width: 250px;
    flex-shrink: 0;
}

.footer-fanart {
    margin-bottom: 10px;
}

.footer-fanart img {
    width: 80px;
    height: auto;
    margin-right: 6px;
    vertical-align: middle;
}
