* {
	box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Segoe UI", "Georgia", serif;
    color: #0D0C0E;
    background-color: #FCEBDF;
    background-image: url("images/ornament.svg");
    background-repeat: repeat;
    background-size: 200px;
}

/* HERO */
header {
    height:auto;
    background: linear-gradient(
        rgba(246,245,242,0.85),
        rgba(246,245,242,0.95)
    );
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.overlay h1 {
    font-size: 4rem;
    letter-spacing: 5px;
    margin: 0;
    font-weight: 300;
}

.overlay p {
    color: #E68BA4;
    font-style: italic;
    margin: 12px 0 35px;
}

nav a {
    margin: 0 18px;
    color: #E68BA4;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 1px;
}

nav a:hover {
    border-bottom: 1px solid #8a7a44;
}

/* BAND */
.band {
    display: flex;
    flex-wrap: wrap;
    max-width: 1100px;
    margin: auto;
    padding: 50px 5px;
    gap: 50px;
    align-items: center;
}

.band img {
    width: 100%;
    max-width: 420px;
   
}

.bandtext {
    max-width: 520px;
}

.bandtext h2 {
    color: #E68BA4;
    font-weight: 400;
}

/* CONTENT */
.content {
    max-width: 900px;
    margin: auto;
    padding: 90px 400px;
	margin-bottom: 35px;
}

.content h2 {
    color: #E68BA4;
    text-align: center;
    margin-bottom: 35px;
    font-weight: 400;
    letter-spacing: 2px;
}

.gigs {
    list-style: none;
    padding: 0;
    text-align: center;
}

.gigs li {
    padding: 14px 0;
    border-bottom: 1px solid #ddd;
    font-size: x-large;
}

/* KONTAKT */
.dark {
    background: rgba(215,175,175,0.19);
	padding: 50px 0px;
}

.kontakt {
    text-align: center;
    font-size: 1.1em;
}

.kontakt a {
    color: #E68BA4;
    text-decoration: none;
}

/* FOOTER */
footer {
    text-align: center;
    padding: 30px;
    font-size: 0.85em;
    color: #777;
}

/* RESPONSIVE */
@media (max-width: 520px) {
    .overlay h1 {
        font-size: 2.6rem;
    }

    .band {
        flex-direction: column;
        text-align: center;
		max-width: 100%; 
  		height: auto;  
  		display: block; 
    }
	
}
