/* CSS Document
1. Gris oscuro (texto "PRO", "AC" y "PUERTAS Y MAMPARAS")
Hex: #666666

RGB: 102, 102, 102

Nombre aproximado: Gris medio oscuro

2. Azul brillante (puertas y subrayado)
Hex: #00A6DE

RGB: 0, 166, 222

Nombre aproximado: Azul celeste / Cyan profundo

3. Gris claro (bisel en letras o separaciones)
Hex: #B3B3B3 (opcional si lo consideras relevante para fondos o sombras)

RGB: 179, 179, 179

Nombre aproximado: Gris claro metálico

// <weight>: Use a value from 100 to 900
// <uniquifier>: Use a unique and descriptive class name

.roboto-<uniquifier> {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}

 */
#sitemap {
	width: 80%;
	margin-left: 10%;
	height: auto;
	padding-bottom: 20px;
	padding-top: 20px;
	background-color: #00A6DE;
}

#sitemap li {
	float: left;
	list-style: none;
	margin-left: 20px;
	color: #f2f2f2;
}

#sitemap li:hover {
	color: #2f2f2f;
	text-decoration: underline;
	transition: .5s;
}

