*{
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

@font-face{
	font-family: ghost;
	src: url(fuentes/iknowaghost.ttf);
}

@font-face{
	font-family: botones;
	src: url(fuentes/Typewriter_delgada.ttf);
}

body{
	background-color: #332B36;
	background-image: url("../imagenes/menu2.jpg");
	background-size: 100% 100%;
	background-attachment: fixed;
	font-weight: bold;
	min-height: 100vh;
}

.contenedor{
	width: 1200px;
	margin: auto;
	padding: 100px 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

h1{
	font-weight: 500;
	font-family: ghost;
	text-align: center;
	padding: 20px 0;
	font-size: 58px;
	color: #FF7E3B;
	letter-spacing: 5px;
	word-spacing: 5px;
	text-shadow: 5px 12px 6px #FFF
}

.regreso{
	margin-left: 20px;
	display: flex;
	width: 5%;
	height: 10vh;
}

.regreso a{
	margin-top: 20px;
	text-decoration: none;
	font-size: 20px;
	width: 40px;
	height: 40px;
	text-align: center;
	line-height: 40px;
	background: #E2D5BC;
	color: #FF7E3B;
	border-radius: 50%;
	box-shadow: 2px 2px 5px #FF7E3B;
	transition: all .4s ease-in-out;
}

.contenedor_botones{
	width: 100%;
	margin-left: 180px;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
}

.person {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 200px;
	height: 50px;
	background: #141414;
	color: #FFF;
	font-family: botones;
	font-size: 20px;
	border: none;
	cursor: pointer;
	transition: .3s ease all;
	border-radius: 5px;
}

.person span{
	transition: .4s ease-in-out all;
	position: relative;
	left: -10%;
}

.person .icono{
	display: flex;
	align-items: center;
	position: relative;
	z-index: 5;
	left: -50px;
	transition: .4s ease-in-out all;
	opacity: 0;
}

.person:hover{
	background: #FF7E3B;
}

.person:hover .icono{
	left: calc(100% - 80px);
	opacity: 1;
}

.person:hover span{
	left: -40px;
}
.contenedor_botones a{
	text-decoration: none;
}