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

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

h2 {
	font-family: 'IM Fell English SC', serif;
	font-size: 20px;
	line-height: 2;
}
.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;
}



@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; ----------------- */
}

}

section {
	width: 100vw;
	height: 50vh;
	background-image: url(js12.jpg);
	background-size: cover;
	background-position: center center;
	display: flex;
	justify-content: center;
	align-items: center;
	
	}


.text1 {
	max-width: 800px;
	max-height: 800px;
	padding-left:100px;
	padding-right: 50px;
	padding-bottom:200px;
	padding-top: 150px;
	margin-top: 300px;
	background-color: rgba(0, 0, 0, 0);
}


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

p {
	font-family: 'Inknut Antiqua', serif;
	font-size: 12px;
	line-height: 1.6;
}


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

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

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

/* The actual timeline (the vertical ruler) */
.timeline {
  position: relative;
  max-width: 1200px;
  margin: 25px auto;
}

/* The actual timeline (the vertical ruler) */
.timeline::after {
  content: '';
  position: absolute;
  width: 6px;
  background-color: white;
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -3px;
}

/* Container around content */
.container {
  padding: 10px 40px;
  position: relative;
  background-color: inherit;
  width: 50%;
}

/* The circles on the timeline */
.container::after {
  content: '';
  position: absolute;
  width: 25px;
  height: 25px;
  right: -17px;
  background-color: white;
  border: 4px solid #A3B4C7;
  top: 15px;
  border-radius: 50%;
  z-index: 1;
}

.content:hover {
	background-color: #A3B4C7;
	transform: rotate(0deg) scale(1.1);
}
p:hover {
	color: white;
	}
/* Place the container to the left */
.left {
  left: 0;
}



/* Place the container to the right */
.right {
  left: 50%;
}

/* Add arrows to the left container (pointing right) */
.left::before {
  content: " ";
  height: 0;
  position: absolute;
  top: 22px;
  width: 0;
  z-index: 1;
  right: 30px;
  border: medium solid white;
  border-width: 10px 0 10px 10px;
  border-color: transparent transparent transparent white;
}

/* Add arrows to the right container (pointing left) */
.right::before {
  content: " ";
  height: 0;
  position: absolute;
  top: 22px;
  width: 0;
  z-index: 1;
  left: 30px;
  border: medium solid white;
  border-width: 10px 10px 10px 0;
  border-color: transparent white transparent transparent;
}

/* Fix the circle for containers on the right side */
.right::after {
  left: -16px;
}

/* The actual content */
.content {
  padding: 20px 30px;
  background-color: white;
  position: relative;
  border-radius: 6px;
}

/* Media queries - Responsive timeline on screens less than 600px wide */
@media screen and (max-width: 600px) {
/* Place the timelime to the left */
  .timeline::after {
    left: 31px;
  }

/* Full-width containers */
  .container {
    width: 100%;
    padding-left: 70px;
    padding-right: 25px;
  }

/* Make sure that all arrows are pointing leftwards */
  .container::before {
    left: 60px;
    border: medium solid white;
    border-width: 10px 10px 10px 0;
    border-color: transparent white transparent transparent;
  }

/* Make sure all circles are at the same spot */
  .left::after, .right::after {
    left: 15px;
  }

/* Make all right containers behave like the left ones */
  .right {
    left: 0%;
  }
}



.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%;
}
