@import url('https://fonts.googleapis.com/css2?family=BIZ+UDPMincho&family=Poppins:wght@600&display=swap');

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

/*Heading*/
body {
	font-family: sans-serif;
	font-size:16px;
	line-height: 1.5;
	background: linear-gradient(90deg, #abada8,white,white,#abada8);
	color: 000;
}

img {
	max-width:100%;
	height:auto;
	box-shadow:1px 1px 7px grey;
  display:block;
}

.container {
	max-width: 800px;
	margin:50px auto;
	padding: 0 30px;
}

#main p {
	text-align:justify;
}

#main h1 {
	font-size: 60px;
	font-weight:bold;
	color:black;
	margin:10px;
	font-family:'BIZ UDPMincho', sans-serif;
	word-spacing:10px;
}

#main h2 {
	font-weight: normal;
	margin-bottom:40px;
	padding:0;
	position:relative;
	opacity:0.6;
}

/*Horizontal line*/
h2:before {
  content: "";
  display: block;
  width: 20%;
  height: 2px;
  background: black;
  left: 0;
  top: 50%;
  position: absolute;
	opacity: 0.6;
}
/*Horizontal line*/
h2:after {
  content: "";
  display: block;
  width: 20%;
  height: 2px;
  background: #000;
  right: 0;
  top: 50%;
  position: absolute;
	opacity:0.6;
}

hr {
	color:white;
}

#main .container {
	display: flex;
	flex-direction:column;
	text-align:center;
	justify-content:space-between;
	}

/*Heath's Filmography*/
.films h3{
	font-size:45px;
	text-align:center;
	font-family:'BIZ UDPMincho', sans-serif;
	font-weight:800;
}

/* The actual timeline (the vertical ruler) */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
	display:flex;
	flex-direction:column;
	justify-content:space-between;
	align-items:center;
}

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

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

/* Place the container to the left */
.left {
  left: -110px;
}

/* Place the container to the right */
.right {
  left:200px;
}

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

/* 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 lightgrey;
  border-width: 10px 10px 10px 0;
  border-color: transparent black transparent transparent;
	opacity:0.3;
}

/* The actual content */
.content {
  padding: 10px;
  background-color: black;
  position: relative;
  border-radius: 7px;
	width:80%;
	margin:0;
	opacity:0.3;
}

.content h2{
	padding:10px;
	text-align:center;
	color:white;
	font-family:'BIZ UDPMincho', sans-serif;
	text-weight:bold;
}

.content p{
	padding:10px;
	text-align:center;
	color:white;
	font-family: 'BIZ UDPMincho',sans-serif;
	font-size:18px;
}

/* Media queries - Responsive timeline on screens less than 600px wide */
@media screen and (max-width: 600px) {
  /* Place the vertical timelime to the left */
  .timeline::after {
  left: 31px;
  }
  
  /* Full-width containers */
  .container {
  width: 100%;
  padding-left: 25px;
  padding-right: 25px;
  }
  
  /* Make sure that all arrows are pointing leftwards */
  .container::before {
  left: 15px;
  border: medium solid lightgrey;
  border-width: 10px 10px 10px 0;
  border-color: transparent black transparent transparent;
  }
  
  /* Make all right containers behave like the left ones */
  .right {
  left: 10%;
  }
	
	/* Make all right containers behave like the left ones */
  .left {
  left: 10%;
  }
	/*Horizontal line Main*/
	h2:before {
  content: "";
  display: block;
  width: 10%;
  height: 2px;
  background: black;
  left: 0;
  top: 50%;
  position: absolute;
	opacity: 0.6;
	}
	/*Horizontal line Main*/
	h2:after {
  content: "";
  display: block;
  width: 10%;
  height: 2px;
  background: #000;
  right: 0;
  top: 50%;
  position: absolute;
	opacity:0.6;
	}
	
	#main h1{
		font-size:40px;
	}
	
	#main h2{
		font-size:20px;
	}
}

/*End Quote*/
.Quote{
	font-style:italics;
	font-weight:normal;
	margin-bottom:30px;
	text-align:center;
	font-size:16px;
}

.Quote img{
	margin-top:40px;
}

/*Button Section*/
.buttons p{
	margin:20px;
}
.moreInfo{
	background:lightgrey;
	padding: 10px 20px;
	margin:5px;
	border-radius:10px;
	box-shadow:2px 2px 2px grey;
	text-decoration:none;
	font-weight:normal;
	color:black;
}

.moreInfo:hover {
	text-decoration: none;
	background-color:darkgrey;
	color: black;
	animation-name:button;
	animation-duration:500ms;
	animation-fill-mode:forwards;
}	

@keyframes button{
	100%{
		transform:scale(2);
	}
}

/*Footer*/
.main-footer{
background-color:darkgrey;
opacity:0.7;
}