
/*----------Projects------*/
#projects h2 {
 font-size: 28px;
}
.zoom {
  padding: 10px;
  color:Tomato;
  background-color: navajowhite;
  transition: transform .5s;
  width: 300px;
  height: 400px;
  margin: 0 auto;
}

.zoom:hover {
  -ms-transform: scale(0.5); /* IE 9 */
  -webkit-transform: scale(0.5); /* Safari 3-8 */
  transform: scale(0.5); 
}

.title-text h2{
	margin-left: 200px;
	font-size: 24px;
	font-family: monospace;
	color: darksalmon;
}

	hr{
 margin :5px auto;
	}

/*--------Completed Projects--------*/

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
 .projects1 {
	flex-direction: column;
	max-width: 1200px;
	margin: 0 auto;
	padding: 100px 0;
}
#projects1 h1
{

	font-size: 25px;
	color: #009868;
	font-weight: bold;
	position: relative;
	z-index: 1;
	display: inline-block;
	text-align: center;
	margin-left: 200px;

}
#projects h1::after
{
	content: '';
	width:50px ;
	height: 35px;
	background: linear-gradient(#019587,#fff);
	position: absolute;
	top: -20px;
	left: 0;
	z-index:-1;
	transform: rotate(10deg);
	border-top-left-radius: 35px;
	border-bottom-right-radius: 35px;
	
}
.dash h1
{
	text-align: center;
	color: blueviolet;
	 animation: mymove 5s infinite;
	 font-family: monospace;
	 font-size: 20px;
}
	
@keyframes mymove {
  from {color:olivedrab ;}
  to {color: indianred;}

}
.container1 {
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 0;

}
.timeline {
 max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.timeline ul {
  list-style: none;
}
.timeline ul li {
  padding: 20px;
  background-color: #1e1f22;
  color: blue;
  border-radius: 10px;
  margin-bottom: 20px;
}
.timeline ul li:last-child {
  margin-bottom: 0;
}
.timeline-content h1 {
  font-weight: 500;
  font-size: 25px;
  line-height: 30px;
  margin-bottom: 10px;
  color: navajowhite;
}
.timeline-content p {
  font-size: 16px;
  line-height: 30px;
  font-weight: 300;
  color: thistle;
}
.timeline-content .date {
  font-size: 12px;
  font-weight: 300;
  margin-bottom: 10px;
  letter-spacing: 2px;
}
@media only screen and (min-width: 768px) {
  .timeline:before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background-color: gray;
  }
  .timeline ul li {
    width: 50%;
    position: relative;
    margin-bottom: 50px;
  }
  .timeline ul li:nth-child(odd) {
    float: left;
    clear: right;
    transform: translateX(-30px);
    border-radius: 20px 0px 20px 20px;
  }
  .timeline ul li:nth-child(even) {
    float: right;
    clear: left;
    transform: translateX(30px);
    border-radius: 0px 20px 20px 20px;
  }
  .timeline ul li::before {
    content: "";
    position: absolute;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    background-color: gray;
    top: 0px;
  }
  .timeline ul li:nth-child(odd)::before {
    transform: translate(50%, -50%);
    right: -30px;
  }
  .timeline ul li:nth-child(even)::before {
    transform: translate(-50%, -50%);
    left: -30px;
  }
  .timeline-content .date {
    position: absolute;
    top: -30px;
  }
  .timeline ul li:hover::before {
    background-color: aqua;
  }
}