/* Importación de las fuentes desde Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600&family=Poppins:wght@400&display=swap');

:root {
	--strong-text-color: #003734;
	--accent-color: #1DAFA4;
}

html {
	position: relative;
	min-height: 100%;
}

nav {
	display: flex;
	flex-wrap: wrap;

	> * {
		margin: .5rem;
	}
}

/* Aplicación de las fuentes y estilos a los elementos */
body {
	/* Fuente Poppins para el texto base */
	font-family: 'Poppins', sans-serif;
	line-height: 1.6;
	margin-bottom: 3rem;
}

h1, h2, h3 {
	/* Fuente Montserrat para todos los títulos */
	font-family: 'Montserrat', sans-serif;
	color: var(--strong-text-color);
}

a.selected {
	text-decoration-line: underline;
	text-underline-position: under;
	text-decoration-thickness: 0.15rem;
	text-decoration-color: var(--accent-color);
}

h1 {
	border-bottom: 2px solid var(--accent-color);
	padding-bottom: 10px;
}

ul {
	list-style-type: disc;
	padding-left: 20px;
}

li {
	margin-bottom: 10px;
}

strong {
	color: var(--strong-text-color);
}

a.navbar-brand {
	white-space: normal;
	text-align: center;
	word-break: break-all;
}

.btn-primary {
	color: #fff;
	background-color: #1b6ec2;
	border-color: #1861ac;
}

.nav-link {
	font-family: 'Montserrat', sans-serif;
	color: var(--strong-text-color);
	text-decoration-line: underline;
	text-underline-position: under;

	:visited {
		font-family: 'Montserrat', sans-serif;
		color: var(--strong-text-color);
	}

	:link {
		font-family: 'Montserrat', sans-serif;
		color: var(--strong-text-color);
	}
}

.border-top {
	border-top: 1px solid #e5e5e5;
}

.border-bottom {
	border-bottom: 1px solid #e5e5e5;
}

.box-shadow {
	box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
}

button.accept-policy {
	font-size: 1rem;
	line-height: inherit;
}

.footer {
	position: absolute;
	bottom: 0;
	width: 100%;
	white-space: nowrap;
	line-height: 60px;
}