* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

body {
	margin: 0;
	font-family: "Mona Sans";
	font-weight: 400;
	padding-top: 5em;
}

a.boton-pregunta {
	background-color: black;
	padding: 0.5em 3em;
	border-radius: 1em;
	color: white;
	text-decoration: none;
}

/* MOBILE */

.desktop-only {
	display: none;
}

#menu {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1;
	width: 100%;
	max-height: 5em;
	background-color: white;
	overflow: hidden;
	transition: max-height 0.5s ease;

	#icono_menu {
		width: 2em;
	}

	h1 {
		font-family: "Meow Script";
		font-weight: 400;
		font-size: 2.5em;
		text-align: center;
	}

	#paginas_movil {
		background-color: #F2F2F2;
		text-transform: uppercase;

		a {
			display: block;
		}

		a, a:hover {
			color: black;
			text-decoration: none;
		}

		a.seleccionado {
			color: #808080;
			cursor: none;
		}
	}
}

#menu.open {
	max-height: 18em;

	#icono_menu {
		width: 1em;
		margin: 0 0.5em;
	}
}

/* DESKTOP */
@media (min-width: 992px) {
	.mobile-only {
		display: none;
	}

	.desktop-only {
		display: block;
	}

	body {
		padding-top: 7em;
	}

	#menu {
		padding: 0 1em;
		max-height: none;

		h1 {
			flex-grow: 1;
			font-size: 4em;
			text-align: left;
		}

		#paginas {
			display: flex;
			column-gap: 2em;
			font-weight: bold;
			text-transform: uppercase;

			a {
				font-weight: 300;
			}

			a, a:hover {
				color: black;
				text-decoration: none;
			}

			a.seleccionado {
				border-bottom: 3px solid black;
				cursor: default;
				font-weight: 700;
			}
		}
	}
}