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

body {
	background-color:black;
	color: rgb(0, 0, 0);
	font-family: 'Roboto', sans-serif;
}

p {
	margin-bottom: 20px;
	line-height: 150%;
}

main {
	margin: 20px auto;
	max-width: 1000px;
	background: rgb(0, 0, 0);
	color: white;
	min-height: 80vh;
	padding: 20px;
	border-radius: 10px;
}

.regresar{
	background-color: rgb(255, 255, 255);
	color: #0f03ff;
	font-weight: 500;
	border-radius: 10px;
	font-size: 14px;
	padding: 5px;
	box-shadow: 10 10 10px rgb(89, 6, 241);
	border:3px solid rgb(13, 19, 190) ;	
	transition:1s;
	text-decoration: none;
}
.regresar:hover{
	background-color: rgb(62, 4, 199);
	color: white;
	border:3px solid white ;
		text-decoration: none;
	
}

.aviso-cookies {
	display: none;
	background: #fff;
	padding: 20px;
	width: calc(100% - 40px);
	max-width: 300px;
	line-height: 150%;
	border-radius: 10px;
	position: fixed;
	bottom: 20px;
	left: 20px;
	z-index: 1000;
	padding-top: 60px;
	box-shadow: 0px 2px 20px 10px rgba(222,222,222,.25);
	text-align: center;
}

.aviso-cookies.activo {
	display: block;
}

.aviso-cookies .galleta {
	max-width: 100px;
	position: absolute;
	top: -50px;
	left: calc(50% - 50px);
}

.aviso-cookies .titulo,
.aviso-cookies .parrafo {
	margin-bottom: 15px;
}

.aviso-cookies .boton {
	width: 100%;
	background: #6c65f1;
	border: none;
	color: #fff;
	font-family: 'Roboto', sans-serif;
	text-align: center;
	padding: 15px 20px;
	font-weight: 700;
	cursor: pointer;
	transition: .3s ease all;
	border-radius: 5px;
	margin-bottom: 15px;
	font-size: 14px;
}

.aviso-cookies .boton:hover {	
	background: #0a00c4;
}

.aviso-cookies .enlace {
	color: #1d06b6;
	text-decoration: none;
	font-size: 14px;
}

.aviso-cookies .enlace:hover {
	text-decoration: underline;
}

.fondo-aviso-cookies {
	display: none;
	background: rgba(146, 5, 5, 0.658);
	position: fixed;
	z-index: 99;
	width: 100vw;
	height: 100vh;
	top: 0;
	left: 0;
}

.fondo-aviso-cookies.activo {
	display: block;
}