:root {
	--logotipo: #8b8bc563;
	--profesion: #15007262;
	--primario: #454d057c;
}

* {
	margin: 0;
	padding-left: 0;
	box-sizing:border-box;
}*/
/*
body {
	font-family: 'Bebas Neue', cursive;
	/*background-image: url('./../img/bg.jpg');*/
}*/

a {
	text-decoration: none;
	color: #fff;
	outline: none;
}

main {
	width: 90%;
	margin-left: 0;
	max-width: 800px;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}


/*<main>
<a href="#" class="logotipo" id="logotipo">
	<div class="texto-animado" id="logo">ENCOMIENDAS</div>
	<p class="subtitulo"><i class="fa-solid fa-truck-fast fa-2x"></i>A todo el pais</p>
</a>
</main>*/








.logotipo {
	padding: 10px;
	border: 20px solid var(--logotipo);
	/*color: var(--logotipo);*/
	color: rgb(97, 177, 65);
	border-radius: 70px;
	font-family: 'Titan One', cursive;
}

.logotipo .subtitulo {
	text-align: center;
	color: azure;
	/*color: var(--profesion);*/
	background: var(--logotipo);
	padding: 12px 10px;
	transition: .5s ease all;
	font-size: 16px;
	font-family: 'Titan One', cursive;

	text-transform: uppercase;
	letter-spacing: 2px;
	border-radius: 70px;
	font-weight: 600;
}

.logotipo:hover .subtitulo {
	background: var(--primario);
	border-radius: 5px;
	border-radius: 70px;
}

.texto-animado {
	display: flex;
	justify-content: center;
	overflow: hidden;
}

.texto-animado > div {
	display:flex;
	flex-direction: column;
	position: relative;
	transition: .3s ease all;
}

.texto-animado > div.animacion {
	transform: translateY(-100px);
}


/*------------*/
.texto-animado > div span {
	font-size: 50px;
	font-weight: normal;
	line-height: 50px;
}

.texto-animado .segunda-linea {
	position: absolute;
	top: 100px;
}

@media screen and (max-width: 600px){
	.texto-animado > div span {
		font-size: 15px;
		line-height: 15px;
	}

	.texto-animado .segunda-linea {
		top: 50px;
	}

	.texto-animado > div.animacion {
		transform: translateY(-50px);
	}

	.logotipo .subtitulo {
		font-size: 20px;
	}
}