@import url('https://fonts.googleapis.com/css2?family=Lato:wght@100;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Comfortaa:wght@300;500;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
} 

body {
	font-family: 'Comfortaa', cursive;
	font-size: 16px;
	font-weight: 100;
	letter-spacing: 0.025em;
	color: #e5eff3;
	background: #709dbc;
}

html { font-size: 100%; }

h1 {
	font-family: 'Comfortaa', cursive;
	font-size: 2rem;
	padding: 1.5rem 1.2rem 1.5rem 0;
	text-align: left;
}

h2 { 
	font-family: 'Comfortaa', 
	cursive; font-size: 1.2em; 
	padding-bottom: 1.5rem;
}
p  { line-height: 1.63em; }

a, a:link { color: #e5eff3; }
a:hover   { color: #11557c; }

.active { color: #11557c; }


/*--------BUTTONS---------------------------------------------*/
.btn.small.active  { background-image: url(../images/druppel-s1-hover.png); }
.btn.medium.active { background-image: url(../images/druppel-m1-hover.png); }
.btn.large.active  { background-image: url(../images/druppel-l1-hover.png);  }

.btn.small:hover  { 
	background-image: url(../images/druppel-s1-hover.png); 
	transition: all 400ms ease-in; 
}
.btn.medium:hover { 
	background-image: url(../images/druppel-m1-hover.png); 
	transition: all 400ms ease-in; 
}
.btn.large:hover  { 
	background-image: url(../images/druppel-l1-hover.png); 
	transition: all 400ms ease-in; 
}

.btn.small.active, .btn.medium.active, .btn.large.active,
.btn.small:hover, .btn.medium:hover, .btn.large:hover { 
	filter: drop-shadow(0px 0px 4px #e5eff3);
}


/*--------CONTENT---------------------------------------------*/
.wrapper {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	width: 1151px;
	height: 100vh;
	margin: 0 auto;
}

main { display: flex; }

.leftSide  { width: 410px; padding-top: 108px; }
.rightSide { flex: 1 0 auto; width: 700px; position: relative; }

.leftSide img { width: 400px; }
.leftSide h1 { font-size: 0; padding: 0; } /* voor google h1 aanwezig */

.homeLogo {
  height: 46px;
  background-image: url(../images/disney-logo-home.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-origin: content-box;
}

.homeLogo:hover {
  cursor: pointer; 
  filter: drop-shadow(1px 1px 2px #33302b);
  transition: all 300ms ease-in;
}


/*--------TRAILER---------------------------------------------*/
.trailer {
	display: flex;
	justify-content: flex-end;
	flex-flow: column wrap;
	align-items: flex-start;
	width: 100%;
	min-height: 479px;
}

.trailer2 {
	display: flex;
	justify-content: flex-start;
	flex-flow: column wrap;
	align-items: flex-start;
	width: 100%;
	min-height: 405px;
	background-image: url(../media/screen-01.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-origin: content-box;
  position: relative;
}

#my-video         { outline: 10px solid #e5eff3; } /*-- geeft rand aan buitenkant--*/
#my-video .btnTxt { align-self: center; }


/*--------BUTTONS---------------------------------------------*/
.btnWrap {
	position: absolute;
	bottom: 107px;
	left: -72px;
}

.buttons { display: inline-flex; width: 430px; }

.btn           { height: 143px; }
.btn.small h2  { padding-left: 1.1rem; }
.btn.medium h2 { padding-left: 1rem; }
.btn.large h2  { padding-left: 2.7rem; }

.small, .medium, .large {
  background-repeat: no-repeat;
  background-size: contain;
  background-origin: content-box;
  background-position: 0em 1.3em;
}

.small {
  width: 105px;
  height: 100px;
  background-image: url(../images/druppel-s1.png);
}

.medium {
  width: 135px;
  height: 100px;
  background-image: url(../images/druppel-m1.png);
}

.large {
  width: 175px;
  height: 100px;
  background-image: url(../images/druppel-l1.png);
}


.btnTxt { 
	width: 530px; 
	text-align: left;
	padding-left: 20px;
	padding-bottom: 94px;
	position: absolute;
	top: 54px;
	left: 75px;
	text-shadow: 1px 1px 2px #000;
}


/*--------FADE IN---------------------------------------------*/
.fadeIn { animation: fadeIn 3s ease-in 0s; }

@keyframes fadeIn {
	0%   { opacity:0; }
	100% { opacity:1; }
}


/*--------404---------------------------------------------*/
.wrongPage {
	width: 300px;
	height: 100%;
	margin-top: 2rem;
  color: #4f4545;
}

.wrongPage img {
	width: 315px;
	display: block;
	margin: 0 auto;
	padding-top: 2.1rem
}

.wrongPage h1 {
  font-size: 6em;
  text-align: center;
  border-top: 2px solid #4f4545;
	border-bottom: 2px solid #4f4545;
	padding: 1.5rem 0;
	margin-top: 2rem;
}

.wrongPage h1 ~ h2 {
    font-size: 1.9rem;
    text-align: center;
    padding-top: 0.5rem;
}

.wrongPage h1 ~ span {
    text-align: right;
    display: block;
    padding: 0.5rem;
}

