/*Subscribe to ds code channel for get more creative videos*/
/*Subscribe to ds code channel for get more creative videos*/
/*Subscribe to ds code channel for get more creative videos*/
.botonAnimado{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 50px;
}

.botonAnimado a{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: white;
	overflow: hidden;
	padding: 30px 70px;
	font-size: 30;
	text-decoration: none;
	letter-spacing: 2px;
	text-transform: uppercase;
	font-weight: bold;
	box-shadow: -1px 8px 26px 5px rgba(0,0,0,0.7);
    background: var(--morado);
}
.botonAnimado a:before{
	position: absolute;
	width: 50%;
	top: 2px;
	left: 2px;
	bottom: 2px;
	content: '';
	background: rgb(142 255 240 / 10%);
}
.botonAnimado a span:nth-child(1) {
	position: absolute;
	width: 100%;
	height: 5px;
	top: 0;
	left: 0;
	background: linear-gradient(to right, var(--morado), var(--moradoClaro));
	animation: animate1 2s linear infinite;
}
@keyframes animate1{
	0%{
		transform: translateX(-100%);
	}
	100%{
		transform: translateX(100%);
	}
}
.botonAnimado a span:nth-child(2) {
	position: absolute;
	width: 5px;
	height: 100%;
	top: 0;
	right: 0;
	background: linear-gradient(to bottom, var(--morado), var(--moradoClaro));
	animation: animate2 2s linear infinite;
	animation-delay: 1s;
}
@keyframes animate2{
	0%{
		transform: translateY(-100%);
	}
	100%{
		transform: translateY(100%);
	}
}
.botonAnimado a span:nth-child(3) {
	position: absolute;
	width: 100%;
	height: 5px;
	left: 0;
	bottom: 0;
	background: linear-gradient(to left, var(--morado), var(--moradoClaro));
	animation: animate3 2s linear infinite;
}
@keyframes animate3{
	0%{
		transform: translateX(100%);
	}
	100%{
		transform: translateX(-100%);
	}
}
.botonAnimado a span:nth-child(4) {
	position: absolute;
	width: 5px;
	height: 100%;
	top: 0;
	left: 0;
	background: linear-gradient(to top, var(--morado), var(--moradoClaro));
	animation: animate4 2s linear infinite;
	animation-delay: 1s;
}
@keyframes animate4{
	0%{
		transform: translateY(100%);
	}
	100%{
		transform: translateY(-100%);
	}
}
/*Subscribe to ds code channel for get more creative videos*/
/*Subscribe to ds code channel for get more creative videos*/
/*Subscribe to ds code channel for get more creative videos*/