/* 
S1: responsivität des flexbox mit videos geht nicht!
S3: FenwayPark ist nicht bündig an die seite?*/

body {
  margin: 0px;
  }

video, figure, img{
		width:100%;
	}

figure {
	margin-left: 0px;
}

.shift a {
  position:relative;
  z-index: 1;
  font-size: 1.5em;
  padding: 20px;
}
.shift a:hover {
  color: #FFFFFF;
}
.shift a:after {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  width: 100%;
  height: 1px;
  content: '.';
  color: transparent;
  background: #BD3039;
  visibility: hidden;
  opacity: 0;
  z-index: -1;
}
.shift a:hover:after {
  opacity: 1;
  visibility: visible;
  height: 100%;
}


main {
  padding: 5px;
}

h1 {
  color: #BD3039;
}

h3 {
  color: #BD3039;
  text-decoration-line: underline; 
}

footer {
  background-color: #0C2340;
  padding: 20px;
}

footer p {
  text-align: center;
  color: white;
}

/* Container und ihre Inhalte */


.video-container {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 0;
    height: 0;
    overflow: hidden;
}

.video-container iframe{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.flex {
	display: flex;
}


.flexboxdrittel {
	width: 33.333%;
	padding: 2%;
}

.flex50 {
	width: 50%;
	padding: 2%;
}

.blocksatz {
	text-align: justify;
}

/* Footer Section */


/*Hotspot Wrapper*/

.HotSpotWrapper {
	display: block;
	position: relative;
	overflow: visible;
}
.HotSpotWrapper .HotSpot {
	position: absolute;
	display: block;
	overflow: visible;
}
.bullet {
	width: 2.7%;
	height: 4%;
	background-color: rgba(255, 255, 0, 0.4);
	border-color: #cc0033;
	border-style: solid;
	border-width: 1px;
	border-radius: 50%;
}
.HotSpot p {
	position: absolute; 
	top: -50px;
	left: 0px;
	text-align: center;
	color: #ffffff;
	background: rgba(0, 102, 0, 0.9);
	border-color: #fff;
	border-width: 1px;
	border-style: solid;
	width: 150px;
	padding: 5px;
	margin: auto;
	font-size:.8em;
	border-radius: 10px;
	opacity: 0;
	transform: scale(0.0);
	z-index: 99999;
	transition: all 0.2s linear;
}
.HotSpot:hover p {
	opacity: 1.0;
	transform: scale(1.0);
}
.HotSpot a {
	text-decoration: none;
	color: #006600;
	font-size:1.0em;
	background-color: #fff;
	padding: 2px 6px;
	border: 1px solid #fff;
	border-radius: 3px;
}
.HotSpot span {
	color: #fff;
	font-size:1.2em;
	font-weight: 800;
	background-color: #006600;
}