body {
    font-family: Courier, monospace;
    color: #2b2b2b;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    line-height: 1.5;
    background-color: #e2e6f0; 
}

h1, h2, b, strong {
    color: #d48a98;
}

nav {
    margin-top: 10px;
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

nav a {
    text-decoration: none;
    color: #2b2b2b;
    background-color: #f6edf0;
    padding: 10px 18px;
    border: 2px solid #d48a98;
    font-weight: bold;
    display: inline-block;
    border-radius: 12px;
    box-shadow: 4px 4px 0px #cbd4eb;
    transition: background-color 0.15s, color 0.15s;
}

nav a:hover {
    background-color: #d48a98;
    color: #ffffff;
    border-color: #d48a98;
    text-decoration: none;
}

ul {
    list-style-type: none;
    padding-left: 0;
}

li {
    margin-bottom: 12px;
}

.streaming-text-links a, 
.streaming-text-links a:visited,
.pad a,
.pad a:visited {
    color: #d48a98;
    text-decoration: underline;
    font-weight: bold;
}

.streaming-text-links a:hover,
.pad a:hover {
    color: #2b2b2b;
    text-decoration: none;
}

.logo-container {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    margin-bottom: 0px;    
    background-color: transparent;
    padding: 0px;
}

.band-logo {
    max-width: 650px;
    width: 100%;            
    height: auto;
    display: block;
}

.band-meta {
    font-size: 1em;
    text-align: center;
    margin-top: -10px;       
    margin-bottom: 15px;
}

.bunny-divider {
    width: 100%;
    max-width: 650px;       
    height: 32px;           
    margin: 0 auto 15px auto; 
    background-image: url('https://i.pinimg.com/originals/01/63/6c/01636c5434cd0462086620c60fdfec16.gif'); 
    background-repeat: repeat-x;
    background-position: center;
    background-size: contain; 
}

.grid-container {
    display: grid;
    grid-template-columns: 1fr; 
    gap: 20px;
    margin-top: 20px;
}

.pad {
    background-color: rgba(255, 255, 255, 0.9);
    border: 2px solid #2b2b2b;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 5px 5px 0px #2b2b2b;
}

.pad h2 {
    margin-top: 0;
    border-bottom: 2px dashed #d48a98;
    padding-bottom: 5px;
}

@media (min-width: 768px) {
    .grid-container {
        grid-template-columns: 1fr 1fr; 
    }

    .full-width {
        grid-column: span 2; 
    }
}

footer { 
    margin-top: 100px;
    font-size: 0.85rem; 
    color: #6a748c; 
    text-align: center;
}

.bio-split {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 15px;
}

.bio-image {
    width: 300px;
    max-width: 100%;
}

.bio-image img {
    width: 100%;
    height: auto;
    border: 2px solid #2b2b2b;
    border-radius: 12px;
    box-shadow: 4px 4px 0px #2b2b2b;
    display: block;
}

@media (min-width: 768px) {
    .bio-split {
        flex-direction: row;
        align-items: flex-start;
    }
    
    .bio-text {
        flex: 1;
    }
}

.music-icons-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-top: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.music-icon-link {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 46px;
    height: 46px;
    background-color: #f6edf0;
    border: 2px solid #2b2b2b;
    border-radius: 12px;
    padding: 10px;
    box-shadow: 3px 3px 0px #2b2b2b;
    transition: background-color 0.15s, transform 0.15s, box-shadow 0.15s;
}

.music-icon-link img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    display: block;
    object-fit: contain;
}

.music-icon-link:hover {
    background-color: #d48a98;
    box-shadow: 1px 1px 0px #2b2b2b;
    transform: translate(2px, 2px);
}
