* {
    box-sizing: border-box;
}

.marco {
    border: magenta 2px solid;
}
.marco:hover{
    background-color: cyan;
    border: cyan 2px solid;
    transition: all 0.5s;
    cursor: pointer;
    /* transform: scale(1.05); */
}
.marco-central {
    background-color: magenta;
}

.marco,
.marco-central {
    padding: 15px;
    height: 325px;
}

/* --------Layout-Estructura-------- */
#principal {
    width: 1140px;
    margin: auto;
}

.columna {
    float: left;
    padding: 0 10px;
    position: relative;
}

.fila {
    margin: 10px 0;
}

.fila::after,
.menu::after {
    content: "";
    display: table;
    clear: both;
}

.cien {
    width: 100%;
}

.noventa {
    width: 90%;
}

.ochenta {
    width: 80%;
}

.setentaycinco {
    width: 75%;
}

.setenta {
    width: 70%;
}

.sesenta {
    width: 60%;
}

.cincuenta {
    width: 50%;
}

.cuarenta {
    width: 40%;
}

.treintaytres {
    width: 33.333333%;
}

.veinticinco {
    width: 25%;
}

.veinte {
    width: 20%;
}

.diez {
    width: 10%;
}
.descripcion {
	background-color: rgb(255, 255, 255);
	position: absolute;
	width: 700px;
	padding: 20px;
	z-index: 100;
	display: none;
    /* height: 670px; */
}
.visible{
    display: block;
}
.derecha{
    left: calc(100% - 10px);
}
.izquierda{
    right: calc(100% - 10px);
}
.arriba{
    top: 0;
}
.abajo{
    top: 100%;
}
.centro{
    left: 50%;
    transform: translateX(-50%);
}
/* .columna:hover .descripcion{
    display: block;
} */
/* --------Media-------- */
img {
    width: 65%;
    float: right;
    margin: 0 0 20px 20px;
}

/* --------Tipografía-------- */
body {
    font-family: "Roboto", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6,
.descripcion-titulo {
    font-family: "Roboto Slab", serif;
    font-weight: 300;
}

h1 {
    font-weight: 500;
    font-size: 46px;
    text-align: center;
}

h2 {
    font-size: 24px;
    text-align: center;
}
h3{
    font-size: 22px;
    font-weight: bold;
}
h4{
    font-size: 20px;
}

.icono {
    font-weight: bold;
    font-size: 36px;
    text-align: center;
    margin: 0;
}

.descripcion-titulo {
    font-size: 18px;
    text-align: center;
}

.numero-arriba,
.numero-abajo {
    font-size: 20px;
    margin: 0;
    color: magenta;
    font-weight: bold;
}

.numero-abajo {
    position: absolute;
    bottom: 15px;
    right: 25px;
}