.decor-bar {
	align-items: center;
	animation: linea 1s linear 0.2s forwards;
	background: #2F2E2F;
  border: 2px solid #2F2E2F;
	border-radius: 30px;
  display: flex;
  justify-content: center;
  margin: 25px auto;
	width: 0%;
}

@keyframes linea {
	to {
		max-width: 400px;
		width: 100%;
	}
}