html, body {
    margin: 0;
    padding: 0;
    height: 100%;
}


#intro {
    width: 100%;
    height: 100%;
    min-width:1000px;
    background-color: #060808;
    background-image: url("Logo.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    background-attachment: fixed;
}


/*
    ************************
        upper range
    ************************
*/
body > header {
    min-width:1000px;
    background-color: #060808;
    color: #FFFFFF;
    display: flex;
    flex-direction: row;
}
#logo img {
    padding-left: 100px;
    padding-right: 25px;
    height: 100px;
}
nav {
    background-color: #060808;
}
nav ul {
    display: flex;
    flex-direction: row;
}
nav li {
    list-style: none;
    margin: 0;
    padding: 25px;
}
nav a {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
}
nav a:hover {
    text-decoration: underline;
}


main {
    margin: 0px;
    padding: 20px 0px;
    background-color: #FFFFFF;
}
article {
    margin: auto;
    width: 1000px;
}
article > header {
    padding: 25px 0px;
    background: url("./img/headline_back.png");
    background-position: center;
    background-repeat: repeat-x;
    text-align: center;
}
article > header > h1 {
    color: #727471;
    font-size: 18px;
    display: inline;
    background-color: #FFFFFF;
    padding: 0px 5px;
}
article footer {
    margin: 20px 0px;
    width: 100%;
    padding: 10px 0px;
    text-align: right;
    font-size: 12px;
    background-color: #b9bbb8;
    border-radius: 5px;
}
article footer a {
    padding-right: 10px;
    color: #FFFFFF;
    text-decoration: none;
}
#trailer section {
    text-align: center;
}
#tour section {
    display: grid;
    grid-template-columns: 200px auto 100px;
}
#tour section a {
    padding: 10px 25px;
    position: relative;
    top: 30px;
    color: #FFFFFF;
    font-size: 12px;
    background-image: url("./img/ticket_button.png");
    background-size: cover;
    border-radius: 3px;
}
.date {
    font-weight: bold;
    font-size: 20px;
    margin-bottom: -5px;
}
.time {
    padding-left:10px;
    font-weight: bold;
    font-size: 11px;
}
.place {
    font-size: 20px;
    margin-bottom: -10px;
}
.description {
    font-size: 11px;
    color: #727471;
}
#band section {
    display: flex;
}
.left {
    flex: 1;
    padding-right: 34px;
    background-image: url("./img/vertical_line_back.png");
    background-position: right;
    background-repeat: repeat-y;
}
.right {
    flex: 1;
    padding-left: 30px;
}
#impressions section {
    display: grid;
    grid-template-columns: auto auto auto;
}
#impressions section img {
    padding: 25px 50px;
}
#press section {
    display: grid;
    grid-template-columns: 200px auto;
}
