* {
    box-sizing: border-box;
}

body {
	background-color: black;
	background-image: url("img/fondos/fondo2.png");
	background-size: 1366px 1728px;
	background-position: left top;
	background-repeat: no-repeat;
	background-attachment: fixed;
	color: white;
	font-family: serif;
	font-size: 16px;
	margin: 0;
	padding: 0;
	width: 100%;
	max-width: 100%;
	min-width: 0;
	overflow-wrap: anywhere;
}

.contenedor {
	padding: 16px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.contenedor .inflogo {
	grid-column: 2 / 4;
	font-size: 1.6vw;
}

.cont2 {
	background-color: rgb(18, 0, 0);
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
	align-items: center;
	text-align: center;
	justify-content: center;
}

.noticon {
	text-align: center;
}