* {
	margin:  0;
	padding: 0;
	box-sizing: border-box;
}

@font-face {
	font-family: Giiber ;
	src: url(../fonts/giiber.ttf);
}

body {
	background-color: #171717;
	font-family: Giiber;
	user-select: none;
	color: red;
}

#root {
	width: 100%;
	height: 100%;
	color: #fff;
}

.navbar {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	background-color: #101010;
}

.navbar ul, .navbar li {
	display: inline-flex;
	font-weight: bold;
	list-style: none;
}

.navbar li {
	padding: 20px;
	margin:  15px;
	position: relative;
	background-color: #0005;
	box-shadow: 0 0 1px 0 #000;
	cursor: pointer;
}

.navbar li::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: 0;
	width: 0;
	height: 2px;
	background-color: #fff;
	transition: 0.2s;
}

.navbar li:hover::after {
	width: 100%;
	left: 0;
}



/* game */
.contenedor {
	display: flex;
	height: 100%;
	margin: 15px;
	justify-content: center;
	align-items: center;
}

.lista {
	background-color: #202020;
	width: 400px;
	height: 80vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 5px;
	position: fixed;
	top: 18%;
}

.lista li {
	display: inline-flex;
	list-style: none;
	background-color: #131313;
	width: 95%;
	height: 100%;
	justify-content: center;
	align-items: center;
	margin: 5px;
	cursor: move;
	font-weight: bold;
	font-size: 20px;
}

.lista li.seleccionado {
	background-color: #000;
}
.lista li.mover {
	opacity: 0;
}
