html, body {
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
    font-family: 'Comic Neue', 'Comic Sans MS', 'Comic Sans', sans-serif;
    background-color: #e0dddd;
    color: #000000;
    margin: 0;
    padding: 0;
    text-align: center;
    overflow-x: hidden;
}

nav {
    background-color: #c1a752;
    border-bottom: 3px dashed #000000;
    padding: 10px 0;
    font-size: 1.2em;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
}

footer {
    padding: 1.5%;
    background-color: #c1a752;
    color: #1f3a93;
    text-align: center;
    font-weight: 600;
}

nav,
footer {
    flex-shrink: 0;
}

.nav-items {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
}

.nav-items a {
    color: #1f3a93;
    text-decoration: none;
    display: inline-block;
    margin: 10px;
    font-weight: bold;
    border: 3px dashed transparent;
    transition: transform 0.5s ease-in-out, border-color 0.2s;
    box-sizing: border-box;
    word-wrap: break-word;
}

.nav-items a:hover {
    color: #c1a752;
    border-color: #1f3a93;
    background-color: #000000;
    animation: spin 1s linear;
}

.rss-icon {
    width: 24px;
    height: 24px;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(20deg);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.animated {
    animation-duration: 1.5s;
    animation-fill-mode: both;
}

.fadeInUp {
    animation-name: fadeInUp;
}

@keyframes blink {
    50% { opacity: 0; }
}

.marquee {
    font-size: 2em;
    color: #ffdd00;
    position: relative;
    display: inline-block;
    padding: 10px 20px;
    background-color: #000000;
    border: 2px solid #ffdd00;
    text-shadow: 0 0 10px #ffdd00;
    overflow: hidden;
}

.marquee:before, .marquee:after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background: #ffdd00;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    animation: blink 1s infinite;
}

.marquee:before {
    left: -20px;
    animation-delay: 0.5s;
}

.marquee:after {
    right: -20px;
}

.marquee em {
    animation: blink 2s linear infinite;
}

.album img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    box-sizing: border-box;
}

@media (min-width: 600px) {
    .nav-items {
        flex-direction: row;
        justify-content: center;
    }

    .nav-items a {
        margin: 0 20px;
    }
}

main {
    flex: 1;
    margin: 20px auto;
    padding: 20px;
    width: 90%;
    max-width: 900px;
    background-color: #ffffff;
    border: 5px solid #000000;
    box-shadow: 10px 10px 0 #c1a752, -10px -10px 0 #1f3a93;
    box-sizing: border-box;
}

h1 {
    color: #c1a752;
    font-size: 3em;
    margin-bottom: 20px;
    text-shadow: 2px 2px #1f3a93;
    box-sizing: border-box;
}

.error {
    background-color: #ffdddd;
    color: #d8000c;
    border: 2px solid #d8000c;
    padding: 2%;
    margin: 1% 0;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

main ul,
main ol {
    text-align: left;
    margin: 20px auto;
    padding-left: 32px;
    max-width: 520px;
}

main li {
    margin-bottom: 10px;
    line-height: 1.5;
}

main li::marker {
    color: #1f3a93;
    font-weight: bold;
}

main ul ul,
main ol ul,
main ul ol,
main ol ol {
    margin-top: 8px;
}

p, a {
    font-size: 18px;
    box-sizing: border-box;
}

p.text-left {
    text-align: left;
}

button {
    padding: 10px 20px;
    background-color: #c1a752;
    color: #ffffff;
    border: 3px dashed #000000;
    border-radius: 10px;
    font-size: 1em;
    cursor: pointer;
    transition: transform 0.2s, background-color 0.2s;
    box-sizing: border-box;
}

button:hover {
    background-color: #1f3a93;
    transform: scale(1.1);
}

.music-page {
    font-family: "Comic Sans MS", "Comic Sans", sans-serif;
    background: #f0f0f0;
    color: #000000;
    padding: 20px;
}

.music-page h1 {
    font-size: 2.5em;
    color: #c1a752;
    text-shadow: 2px 2px #1f3a93;
    margin-bottom: 20px;
}

.music-page p {
    font-size: 1.2em;
    color: #000000;
    margin-bottom: 20px;
}

.music-page a {
    color: #1f3a93;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease-in-out;
}

.music-page a:hover {
    color: #c1a752;
}

.music-page .album-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

.music-page .album {
    background-color: #ffffff;
    border: 3px solid #000000;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    width: 180px;
    text-align: center;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.1);
    margin: 10px;
}

.music-page .album img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease-in-out;
}

.music-page .album a {
    text-decoration: none;
}

.music-page .album p {
    margin: 10px 0;
    color: #000000;
    font-size: 1em;
    font-weight: bold;
}

.music-page .album:hover {
    transform: translateY(-10px);
    box-shadow: 7px 7px 15px rgba(0, 0, 0, 0.2);
}

.music-page .album:hover img {
    transform: scale(1.05);
}

.no-posts {
    text-align: center;
    font-size: 1.25em;
    color: #999;
    box-sizing: border-box;
}
