*{
    box-sizing:border-box;
}

body{
    margin:0;
    background:#faf8f3;
    color:#333;
    font-family:Arial, Helvetica, sans-serif;
    line-height:1.7;
}

.container{
    max-width:720px;
    margin:auto;
    padding:16px;
}


/* Header */

header{
    display:flex;
    align-items:flex-start;
    gap:22px;
    margin-bottom:30px;
}

.logo{
    width:108px;
    height:auto;
    flex-shrink:0;
}

.header-text{
    flex:1;
}

h1{
    margin:0 0 2px;
    font-size:2.6rem;
    font-weight:700;
    color:#2f4f4f;
    font-family:Arial, Helvetica, sans-serif;
}

.header-text p{
    margin:2px 0;
    font-size:0.95rem;
    line-height:1.4;
}

.header-text a{
    color:#2f4f4f;
    text-decoration:none;
}

.header-text a:hover{
    text-decoration:underline;
}


/* Tagline */

h2{
    margin:8px 0 28px;
    text-align:center;
    font-family:Georgia, "Times New Roman", serif;
    font-style:italic;
    font-size:1.4rem;
    font-weight:bold;
    color:#2f4f4f;
}


/* Main text */

main p{
    margin:18px 0;
    font-size:1.1rem;
}

strong{
    color:#2f4f4f;
}


/* Band photo */

.bandphoto{
    display:block;
    width:100%;
    max-width:600px;
    margin:36px auto 0;
    border-radius:8px;
    box-shadow:0 4px 12px rgba(0,0,0,.15);
}


/* Footer */

footer{
    margin-top:40px;
    padding:20px 0 10px;
    border-top:1px solid #d8d8d8;
    text-align:center;
    color:#777;
    font-size:0.9rem;
}

footer p{
    margin:4px 0;
}


/* Mobile adjustments */

@media (max-width:480px){

    .container{
        padding:14px;
    }

    header{
        gap:16px;
    }

    .logo{
        width:90px;
    }

    h1{
        font-size:2.2rem;
    }

    h2{
        font-size:1.25rem;
        white-space:nowrap;
    }

    .header-text p{
        font-size:0.9rem;
    }

    main p{
        font-size:1.05rem;
    }

}