html{
	scroll-behavior: smooth;
	
}

body {
	background-color: #1b1b1b;
	background-size: cover;
	font-family: Roboto;
	margin: 0;
	padding: 0;
}

#navigation-container {
	width: 600px;
	margin: 0 auto;
	height: 70px;
}

#nav-active {
	color: #fff;
	font-size: 20px;	
}



.navigation-bar {
	transition: 2s;
	background-color: black;
	height: 70px;
	width: 100%;
	text-align:center;
	
}

.navigation-bar img{
	transition: 1s;
	float:left;
	width: 70px;
	height: 70px;

}

.navigation-bar img:hover{
	transition: 1s;
	float:left;
	transform: scale(1.2);
	transform: rotate(20deg);
	
}

.navigation-bar ul {
	padding: 0px;
	margin: 0px;
	text-align: center;
	display:inline-block;
	vertical-align:top;
	
}

.navigation-bar li {
	list-style-type: none;
	padding: 0px;
	height: 24px;
	margin-top: 4px;
	margin-bottom: 4px;
	display: inline;
	
}

.navigation-bar li a {
	transition: 1s;
	color: #f9500d;
	font-size: 16px;
	text-decoration: none;
	line-height: 70px;
	padding: 5px 15px;
	
	
	
}

.navigation-bar:hover{
	transition: 1s;
	transform-origin: center;
	background-color: #222;

}

.navigation-bar li a:hover{
	transition: 0.1s;
	color: #fff;
	border: red;
	border-bottom: 4px solid #fff;

}

.info_section{
	border-radius: 50px;
	margin: auto;
	width: 70%;
	height: 600px;
	padding: 10px;
	text-align: center;
	background: rgba(1, 1, 1, 0.8);

}

.info_section h1{
	transition: 1s;
	color: #fff;
	display: inline-block;
	border-bottom: 3px solid #fff;
	margin: auto;
	font-size: 50px;
	padding: 5px;
	color: white;
	text-align: left;

}
.info_section h1:hover{
	transition: 1s;
	display: inline-block;
	-webkit-transform: scale(1.2);

}

.info_section p{
	margin: auto;
	font-size: 20px;
	padding: 10px;
	color: #ff4500;
	text-align: left;
	
}

.gallery {
	margin-left: 30px;
	float: left;
	text-align: left;
	width: 300px;
	
}

.gallery h2{
	float: left;
	color: white;
	
}

.progress{
	color: white;
	text-align: center;
	margin: auto;
	font-size: 50px;
	
	
}

/* The actual timeline (the vertical ruler) */
.timeline {
  position: relative;
  max-width: 1200px;
  margin: 0 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 #ff5500;
  top: 15px;
  border-radius: 50%;
  z-index: 1;
}

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

/* 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 #ff5500;
  border-width: 10px 0 10px 10px;
  border-color: transparent transparent transparent #ff5500;
}

/* 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 #ff5500 transparent transparent;
}

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

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

.content h2{
	display: inline-block;
	transition: 1s;
	color: white;
	font-size: 26px;
	
}

.content p{
	display: inline-block;
	transition: 1s;
	color: white;
	font-size: 16px;
	
}

.content h2:hover{
	transition: 1s;
	color: white;
	font-size: 28px;
	
}

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