/* Set page background to black and make text white */
html, body {
    height: 100%;
    margin: 0;
    background: #000 url("../images/fg_bg.png") center center / cover no-repeat fixed;
    color: #fff;
    text-align: center; /* centers all text */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Ensure links and form controls are readable */
a { color: #fff; text-decoration: underline; }
a:visited { color: #ddd; }
button, input, textarea, select {
    background-color: #000;
    color: #fff;
    border-color: #444;
}

/* Make any element that might set its own color inherit the white text */
body * { color: inherit; }

.logo {
    display: block;
    margin: 20px auto;   /* centers horizontally and adds vertical spacing */
    max-width: 600px;    /* maximum width */
    width: 50%;          /* responsive size (adjust as needed) */
    height: auto;
}
.artistlogo {
        display: block;
    margin: 20px auto;   /* centers horizontally and adds vertical spacing */
    max-width: 600px;    /* maximum width */
    width: 50%;          /* responsive size (adjust as needed) */
    height: auto;
}
.discography {
    display: block;
    margin: 20px auto;   /* centers horizontally and adds vertical spacing */
    max-width: 200px;    /* maximum width */
    width: 70%;          /* responsive size (adjust as needed) */
    height: auto;
}
.btn1 {
    background: linear-gradient(180deg, #08320a 0%, #1a6a2a 50%, #05260a 100%);
    color: #e6f8e6;
    border: 2px solid rgba(46,130,46,0.9);
    padding: 12px 24px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 10px 5px;
    cursor: pointer;
    border-radius: 8px;
    font-family: "Palatino Linotype", "Book Antiqua", Georgia, serif;
    letter-spacing: 0.8px;
    text-shadow: 0 1px 0 rgba(0,0,0,0.7), 0 0 8px rgba(40,200,80,0.06);
    box-shadow: inset 0 2px 0 rgba(255,255,255,0.02), 0 6px 18px rgba(0,0,0,0.6), 0 0 18px rgba(34,160,34,0.14);
    transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
    background-blend-mode: multiply;
}

/* hover/focus for more mysterious glow */
.btn1:hover,
.btn1:focus {
    transform: translateY(-2px) scale(1.02);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.03), 0 12px 30px rgba(0,0,0,0.75), 0 0 32px rgba(34,220,34,0.28);
    filter: saturate(1.08) brightness(1.04);
    outline: none;
}

/* small rune-like glowing accent */
.btn1::after {
    content: "";
    display: inline-block;
    margin-left: 10px;
    width: 10px;
    height: 10px;
    background: radial-gradient(circle at 30% 30%, rgba(200,255,180,0.95), rgba(20,60,20,0.12));
    border-radius: 2px;
    box-shadow: 0 0 8px rgba(120,255,120,0.6);
    vertical-align: middle;
    transform: rotate(25deg);
}