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

body {
	font-size: 18px;
	overflow-x: hidden;
}

.v1 {
	background-color: #000000;
	width: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 99;
	font-family: 'IM Fell English SC', serif;
	font-size: 20px;
}
.v1 ul {
	list-style-type: none;
	display: flex;
	max-width: 800px;	
	margin: 0 auto;
}
.v1 li {
	width: 25%;
}
.v1 li a {
	display: block;
	color: white;
	text-decoration: none;
	padding: 20px 0 20px 0;
	text-align: center;
	transition: all 1s linear;
}
.v1 li:last-of-type a {
	border-right: none;
}
.v1 li a:hover {
	color: white;
	background-color: #A3B4C7;
}

.v3 {
	display: none;
}

.section2 {
	width: 100vw;
	height: 100vh;
	background-image: url(js20.jpg);
	background-size: 100%;
	background-position: center center;
	background-repeat: no-repeat;
	display: flex;
	justify-content: center;
	align-items: center;
}
.text2 {
	max-width: 660px;
	margin-top: 20%;
	padding: 10px;
	background-color:rgba(163,180,199,0.2);
}

.section2 {
	border: 0px;
	transition: all 3s ease;
}
.section2:hover {
	border: 50px solid black;
}

.text2 h4 {
	transition: all 3s ease;
}
.section2:hover + .text2 h4 {
	opacity: 0;
}

.section2 h4 {
	transition: all 4s linear;
}
.text2:hover h4 {
	opacity: 0;
}


.text2:hover {
	background-color:rgba(163,180,199,0);
}


.section3 {
	width: 100vw;
	height: 100vh;
	background-image: url(jstree.jpg);
	background-position: center center;
	background-repeat: no-repeat;
	padding: 10%;
	display: flex;
	background-size: 70%;
}

.section3 {
	opacity: 1;
	animation-name: fadeInOpacity;
	animation-iteration-count: 1;
	animation-timing-function: ease-in;
	animation-duration: 2s;
	animation-play-state: paused; 
}

.section3:hover {
  /* Toggle our animation play state to running when we are hovering over our sticker */
  animation-play-state: running;
}
@keyframes fadeInOpacity {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

h1 {
	font-family: 'Homemade Apple', cursive;
	font-size: 2.0vw;
	color: white;
	text-align: center;
}
h1:hover {
	color: #A3B4C7;
}

h4 {
	font-family: 'Inknut Antiqua', serif;
	font-size: 1.2vw;
	line-height: 1.4;
	color: white;
	text-align: center;
}
h5 {
	font-family: 'Inknut Antiqua', serif;
	font-size: 1.2vw;
	line-height: 1.4;
	color: white;
	text-align: center;
	opacity: 1;
	animation-name: fadeIn;
	animation-iteration-count: 1;
	animation-timing-function: ease-in;
	animation-duration: 8s;
}

@keyframes fadeIn {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

.container {
	display: flex;
	align-items: center;
	justify-content: center center;
	height: 100vh;
	width: 100vw;
	background-color: black;
}

.container {
  animation-duration: 3s;
  animation-name: slidein;
}


@keyframes slidein {
  from {
    margin-left: 100%;
    width: 100%; 
  }

  to {
    margin-left: 0%;
    width: 100%;
  }
}

section {
	max-width: 50%;
	padding:5%;
}

.throne {
	width: 95%; 
}

.throne:hover {
	transform: rotate(360deg) scale(1.1);
	transition: all 4s ease;
}


@media all and (max-width: 800px) {
.v1 {
	display: none;
}
.v3 {
	display: block;
}	
.v3 #menuToggle {
	position: fixed;
	top: 50px;
	left: 50px; /* ------------------------ FOR RIGHT SIDE CHANGE TO right: 50px; ----------------- */
	width: 50px;
}
.v3 input {
	display: block;
	width: 40px;
	height: 40px;
	position: absolute;
	top: -5px;
	left: 0;  
	z-index: 10;
	opacity: 0;
	cursor: pointer;
}

.v3 span {
	display: block;
	width: 30px;
	height: 4px;
	background-color: #cdcdcd;
	margin-bottom: 5px;
	border-radius: 3px;
	transform-origin: 2px 2px;
	transition: transform 0.5s linear;
	position: relative;
	z-index: 9;
}

.v3 input:checked ~ span {
	background-color: white;
	transform: rotate(45deg);
}

.v3 input:checked ~ span:nth-of-type(2) {
	opacity: 0;
}

.v3 input:checked ~ span:nth-of-type(3) {
	transform: rotate(-45deg);
}

.v3 #menu {
	list-style-type: none;
	width: 300px;
	height: 100vh;
	background-color: #000000;
	padding: 125px 50px 50px 50px;
	position: absolute;
	top: -50px;
	left: -350px;  /* ------------------------ FOR RIGHT SIDE CHANGE TO right: -350px; ----------------- */
	z-index: 8;
	transition: all 0.5s ease;
	font-family: 'IM Fell English SC', serif;
}
.v3 li {
	margin: 25px 0;
	font-size: 24px;
}
.v3 li a {
	color: white;
	text-decoration: none;
}
.v3 li a:hover {
	color: #A3B4C7;
	transition: all 1s ease;
}

.v3 input:checked ~ #menu {
	left: -50px; /* ------------------------ FOR RIGHT SIDE CHANGE TO right: -50px; ----------------- */
}

}


.video-container {
position: relative;
padding-bottom: 56.25%;
padding-top: 30px; height: 0; overflow: hidden;
}

.video-container iframe,
.video-container object,
.video-container embed {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}


