/* Common formatting */
body {
    background-color: black;
    background-image: url("../img/hamburg.jpg");
    /* Photo: Kevin Hackert, Flickr */
    /* License: Attribution-NonCommercial (CC BY-NC 2.0) */
    background-repeat: no-repeat;
    background-position: center top;
    background-size: 100%;
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}


footer {
    position: fixed;
    bottom: 0; 
    max-width: inherit;
    width: 100%;
    color: white;
    font-size: 14px;
    border-top-style: solid;
    border-top-width: 0.5px;
}

ul {
    padding: 10px 0px 10px 0px;
    margin: 0;
    list-style-type: none;
    background-color: #ffffff;
    opacity: 0.3;
}

li {
    display: inline;
    margin: 5px;
    font-size: 18px;
}

h1 {
    color: red;
}

h2 {
    color: blue;
}

img {
    width: 100%;
}


p {
    color: white;
}

figcaption {
    text-align: right;
    color: white;
}

figure {
    padding: 5px;
    color: white;
}

/* Formatting specific to the image gallery  */

figure.gallery {
    display: flex;
    width: 100%;
    background-color: #eeeeee;
    margin: 0;
    padding: 0;
}

div.gallery {
    width: 40%;
    margin: auto;
}

ol.gallery {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

div.selectedimage {
    width: 60%;
    margin: auto;
    margin-left: auto;
    margin-right: auto;
}

img.gallery {
    width: 100px;
    height: 100px;
    padding: 5px;
}

img.selectedimage {
    height: 300px;
    width: 90%;
    padding: 5px;
}

/* Formatting specific to the booking page */
article.booking {
    width: 100%;
    background-color: #eeeeee;
    margin: 0;
    padding: 0;
}

section.booking {
    display: flex;
    width: 100%;
    background-color: #eeeeee;
    margin: 0;
    padding: 0;
}

form > p {
    color: black;
    text-align: left;
    width: 100%;
    margin-left: 10px;
}

div.form {
    width: 70%;
    margin: auto;
}

div.seatplan {
    width: 30%;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

div.seatplan > table {
    margin-left: auto;
    margin-right: auto;
    margin-top: 10px;
    color: white;
}


/* Change background color with screen size */
@media only screen {
    .contact {
	background-color: green;
	color: white;
    }
} 

@media only screen and (max-width: 1024px) {
    .contact {
	background-color: blue;
	color: white;
    }
} 

@media only screen and (max-width: 480px) {
    .contact {
	background-color: red;
	color: white;
    }
} 

/* Override some of the above settings for printing */
@media only print {
    body {
	/* White background for printouts */
	background: none;
    }

    /* Reset to black text and transparent background */
    p, footer, header, a, a:visited, ul, figure, figcaption {
	color: black;
	background-color: transparent;
	opacity: 1;
    }
}

@media only screen {
    .boardingpass {
	display: none;
	text-align: center;
	width: 100%;
    }
}
