
body, html {
	height: 100%;
	font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.5;
	color: #212529;
	text-align: center;
	margin: 0;
	padding: 0;
}
.box {
	display: flex;
	flex-flow: column;
	height: 100%;
}
.box .row.header {
	flex: 0 1 auto;
	display: flex;
	flex-direction: row;
	justify-content: space-evenly;
	align-items: center;
	padding-top: 1rem;
}
.box .row.content {
	flex: 1 1 auto;
	padding-top: 2em;
	padding-bottom: 2em;
}
.videobox {
	display: flex;
	flex-flow: row;
	align-items: center;
	justify-content: space-evenly;
	width: 100%;
	height: 400px;
}
.videobox .video, video {
	flex: 0 1 auto;
}
@media only screen and (max-width: 1470px) {
	.videobox {
		flex-flow: column;
		width: 100%;
		height: auto;
	}
}
@media only screen and (max-width: 725px) {
	.videobox {
		width: 100%;
		height: 700px;
	}
	.videobox .video, video {
		flex: 0 1 auto;
		max-width: 100%;
		width: auto;
		height: auto;
	}
}

.mail {
	color: black;
	text-decoration: underline;
}
.desc img {
	display: flex;
	justify-content: center;
	align-items: center;
	border: 1px solid black;
}
.email {
	padding-top: 1em;
	width: 98%;
	margin: 5px auto;
}
.box .row.footer {
	flex: 0 1 3.5rem;
}
h1, h2 {
	font-family: inherit;
	font-weight: 500;
	line-height: 1.2;
	color: inherit;
}
button {
	color: white;
	font-size: 1.2em;
	padding: 10px 0;
	border-radius: 15px;
	background-color: #767676;
}
.green {
  border: 2px solid #4CAF50;
  background-color: #64AF67;
}
.blue {
  border: 2px solid #0069D9;
  background-color: #0069D9;
}
.red {
  border: 2px solid #dc3545;
  background-color: #DC5663;
}
button {
	width: 540px;
	margin: 5px auto;
}
.logo {
	display: block;
	max-width:300px;
	max-height:100px;
	width: auto;
	height: auto;
}
.desc {
width: 80%;
}
.w {
	width 600px;
	margin: 5px auto;
	text-align:left;
}
.desc {
	background-color: #E9EBEC;
	border-radius: 4px;
}
.correct {
	color: #155724;
	background-color: #d4edda;
	border-color: #155724;
}
.wrong {
	color: #721c24;
	background-color: #f8d7da;
	border-color: #721c24;
}
li, p {
	margin: 0;
	padding: 0;
}
.desc p {
	padding: 0 1em 1em 1em;
}
.title {
	padding-top: 1em;
	text-align: center;
	font-size: 1.5em;
	line-height: 1;
	margin-bottom: 1rem;
}
hr {
	margin: 0 auto;
	padding: 0;
	width:90%;
}
.correct hr {
	border-color: #155724;
}
.wrong hr {
	border-color: #721c24;
}
footer {
	min-height: 3.5rem;
	background-color: #404040; 
	color: white; 
	font-size: 0.9rem; 
	padding: 0;
	display: flex;
	justify-content: center;
}
footer * {
	color: white;
}
footer > div {
	display: flex;
	align-items: center;
}
.cv::before {
	content: '';
	display: inline-block;
	vertical-align: middle;
}

@media only screen and (max-width: 600px) {
  button {
	width: 90%;
  }
  .w {
	width: 100%;
	margin: 0 auto;
	text-align:left;
	padding: 1em 0;
  }
  .desc {
	border-radius: 4px;
  }
  .videos video {
	max-width: 80%;
  }
}

@media only screen and (max-width: 900px) {
	.box .row.header .logo {
		display: block;
		max-width:25%;
		max-height:100px;
		width: auto;
		height: auto;
	}
}

@media only screen and (max-width: 1400px) and (min-width: 1080px) {
  button {
	width: 50%;
  }
}

@media only screen and (min-width: 1400px) {
  button {
	width: 1300px;
  }
}

@media only screen and (min-width: 1020px) {
	.email {
		width: 1000px;
	}
}

.hidden {
	visibility: hidden;
	display: none;
}

/* Cookie Popup - https://www.w3schools.com/howto/howto_js_popup.asp */

.popupInfoLink {
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	float:right; 
	margin: 0 auto;
	text-decoration: underline;
}
/* The actual popup */
.popup {
  position:fixed;
  visibility: hidden;
  background-color: #555;
  color: #fff;
  text-align: left;
  border-radius: 6px;
  padding: 8px 1rem;
  z-index: 1;
  bottom: 4rem;
  left: 50%;
}
/* Popup arrow */
.popup::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}

.show {
  visibility: visible !important;
  display: block;
  -webkit-animation: fadeIn 1s;
  animation: fadeIn 1s;
}
@-webkit-keyframes fadeIn {
  from {opacity: 0;} 
  to {opacity: 1;}
}
@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity:1 ;}
}


