@charset 'UTF-8';

html,
html * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: arial, sans-serif;
  font-size: 1vw;
  background: white;
}
header {
  position: fixed;
  padding: 2em;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  background:rgba(0,0,0,0.2);
}
nav {
  z-index: 400;
  top: 0;
  left: 0;
  opacity: .55;
  background: #fff;
  position: relative;
  display: block !important;
  float: right;
  width: 30%;
  padding: .75em 1em 0 0;
  height: 11.5em;
}

.style-nav ul {
	list-style-type: none;
}

.style-nav ul li a {
	text-decoration: none;
	color: #2F322A;
	text-align: center;
	display: block;
	text-transform: uppercase;
	padding: 8px;
}

.hero {
  	position: relative;
  	height: 34vw;
  	background-color: #a2f92f;
	background-image:url("../image/Gustav_Klimt_026.jpg");
	background-size: cover;
	padding: 20px 20px 50px 20px;
	color: #FFFFFF;
	text-align: center;
}
h1 {
	font-size: 57px;
	text-transform: uppercase;
	font-weight: 200;
	margin-bottom: 60px;
}

h3 {
	font-size: 16px;
	text-transform: uppercase;
	font-weight: 200;
	margin-bottom: 20px;
}

h4 {
	font-size: 30px;
	font-weight: 200;
	font-variant:small-caps;
	margin-top: 120px;
	margin-bottom: 60px;
}

.button {
	border: 2px #FFFFFF solid;
	padding: 8px 30px;
	border-radius: 30px;
	color: #FFFFFF;
	text-decoration:none;
}

.intro {
  position: relative;
  color: #343144;
  background: #ffc73d;
  height: 12vw;
  padding: 2em 6em 2em;
}

.artworks {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.row:before, .row:after {
	content: "";
	display: table;
}

.row:after {
	clear: both;
}

.artwork {
  display: flex;
}

.artwork .artwork-piece {
  padding: 5% 5% 8% 5%;
	background-image:url("../image/Preparatory_design_Klimt.jpg");
    width: 50%;
	color: #26223e;
	
	background-image:-moz-linear-gradient( 250deg, rgb(255,199,61) 0%, rgb(255,91,127) 100%);
    background-image: -webkit-linear-gradient( 250deg, rgb(255,199,61) 0%, rgb(255,91,127) 100%);
    background-image: -ms-linear-gradient( 250deg, rgb(255,199,61) 0%, rgb(255,91,127) 100%);
}
.artwork figure {
 
  vertical-align: middle;
  padding: 0% 00% 0% 0%;

}
.artwork .artwork-description {
  background: #26223e;
  background-image:url("../image/Gustav_Klimt_Sonnenblume.jpg");
	width: 50%;
	color: beige;
  padding: 0em 5em 5em;
}
/* thumbnail in artwork-description */
.text_column_intro h4 {
	text-align: center;
	margin-top: 5px;
	margin-right: 5px;
	margin-bottom: 5px;
	margin-left: 5px;
	color: #DCA712;
}
.text_column_intro p {
	text-align: justify;
	font-weight: lighter;

	line-height: 22px;
	color: #4F4242;
}
.thumbnailmedia {
	align-items: center;
	width: 100px;
	border-radius: 200px;
	height: 100px;
	margin-left: auto;
}
.thumbnailmedia_align {
	margin-top: 50px;
	text-align: center;
}
/* Footer */

footer {
  margin-top: -8em;
  padding: 8.75em 0 2em;
  height: 10vw;
	text-align: center;
  background-image:-moz-linear-gradient( -45deg, rgb(255,91,127) 0%, rgb(255,199,61) 100%);
  background-image: -webkit-linear-gradient( -45deg, rgb(255,91,127) 0%, rgb(255,199,61) 100%);
  background-image: -ms-linear-gradient( -45deg, rgb(255,91,127) 0%, rgb(255,199,61) 100%);
}
.copyright {
	height: px;
	text-align: center;
	padding-top: 20px;
	padding-bottom: 20px;
	background-color: #ffc73d;
	color: #26223e;
	text-transform: uppercase;
	font-weight: lighter;
	letter-spacing: 2px;
	border-top-width: 2px;
}
/* Tablet: 768px–1024px */
@media (max-width: 1024px) and (min-width: 768px) {
  body {
    font-size: 2vw;
  }
  header {
    padding: 1em;
  }
  nav {
    width: 100%;
    height: auto;
    padding: 1em 0;
    float: none;
  }
  .hero {
    height: 40vw;
    padding: 10px 10px 30px 10px;
    font-size: 1.2em;
  }
  .intro {
    height: auto;
    padding: 1em 2em 1em;
  }
  .artwork {
    flex-direction: column;
  }
  .artwork .artwork-piece,
  .artwork .artwork-description {
    width: 100%;
    padding: 3% 3% 5% 3%;
  }
  footer {
    padding: 4em 0 1em;
    height: auto;
  }
}

/* Smartphone: ≤767px */
@media (max-width: 767px) {
  body {
    font-size: 3vw;
  }
  header {
    padding: 0.5em;
    position: static;
  }
  nav {
    width: 100%;
    height: auto;
    padding: 0.5em 0;
    float: none;
    opacity: 1;
  }
  .hero {
    height: auto;
    padding: 5px 5px 20px 5px;
    font-size: 1em;
    background-position: center;
  }
  h1 {
    font-size: 32px;
    margin-bottom: 20px;
  }
  h3 {
    font-size: 14px;
    margin-bottom: 10px;
  }
  h4 {
    font-size: 18px;
    margin-top: 40px;
    margin-bottom: 20px;
  }
  .button {
    padding: 6px 16px;
    font-size: 14px;
  }
  .intro {
    height: auto;
    padding: 1em 1em 1em;
  }
  .artwork {
    flex-direction: column;
  }
  .artwork .artwork-piece,
  .artwork .artwork-description {
    width: 100%;
    padding: 2% 2% 3% 2%;
  }
  .thumbnailmedia {
    width: 60px;
    height: 60px;
  }
  .thumbnailmedia_align {
    margin-top: 20px;
  }

/* Footer (match Bootstrap HTML classes) */
.site-footer {
  margin-top: 0;              /* remove negative margin that can hide it */
  padding: 3rem 0;
  text-align: center;
  background-image: linear-gradient(-45deg, rgb(255,91,127) 0%, rgb(255,199,61) 100%);
}

.site-footer .footer-link {
  color: #26223e;
  text-decoration: none;
  font-weight: 300;
  letter-spacing: 0.5px;
}

.site-footer .footer-link:hover {
  text-decoration: underline;
}

/* Copyright bar (match HTML: copyright-bar) */
.copyright-bar {
  text-align: center;
  padding: 1rem 0;
  background-color: #ffc73d;
  color: #26223e;
  text-transform: uppercase;
  font-weight: 300;
  letter-spacing: 2px;
  border-top: 2px solid rgba(38,34,62,0.15);
}
}