body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background-color: #1a1a1a;
    color: #e0e0e0;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

.main-header {
    background-color: #000;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}

.logo-text {
    font-size: 4em;
    font-weight: bold;
}

.logo-basement {
    color: #fff;
}

.logo-jam {
    color: #cc0000;
}

.since-text {
    font-size: 1.2em;
    color: #aaa;
    margin-top: 5px;
}

main {
    max-width: 900px;
    margin: 20px auto;
    padding: 0 20px;
}

section {
    background-color: #222;
    padding: 30px;
    margin-bottom: 25px;
    border-radius: 8px;
}

h2 {
    color: #fff;
    border-bottom: 2px solid #cc0000;
    padding-bottom: 10px;
    margin-top: 0;
}

ul {
    list-style-type: none;
    padding: 0;
}

li {
    margin-bottom: 10px;
}

a {
    color: #ff4500;
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    text-decoration: underline;
}

.social-links a {
    margin-right: 20px;
    font-size: 1.2em;
}

.band-photo {
    width: 40%;
    height: auto;
    border-radius: 8px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
}

footer {
    text-align: center;
    padding: 20px;
    color: #666;
    font-size: 0.9em;
}

/* Media Query for Mobile Devices */
@media (max-width: 768px) {
    .logo-text {
        font-size: 2.5em;
    }
    
    .since-text {
        font-size: 1em;
    }

    main {
        padding: 0 10px;
    }

    section {
        padding: 20px;
    }

    .band-photo{
        width: 80%;
    }
}