	/* --- ENLACE --- */

	/* Color del Enlace */
	.enlace {
	color: blue; /* Color del Enlace */
	text-decoration: none; /* Subrayado Nulo */
	}

	/* Enlace Cambia de Color con el Cursor Encima */
	.enlace:hover {
	color: red; /* Color del Enlace con el Cursor Encima */    
  	}

	/* --- SEPARADOR --- */
	.separator {
	height: 2px; /* Alto */
	width: 99%; /* Ancho Ajustado */
	border-radius: 50px; /* Radio del Borde */
	border: 3px solid black; /* Borde y Color */
	background: black;
	}

/* --- ESPACIO --- */
.space {
    margin-left: 1%;
    margin-right: 1%;
    margin-top: 1%;
    margin-bottom: 1%;
    padding: 1%;
}


/* CONTENEDOR HORIZONTAL */
.contenido {
    width: 1000px;
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 1%;
    padding: 1%;
}


/* IMAGEN */
.imagen {
    width: 300px;
    height: 300px;
    border: solid red 1px;
    border-radius: 20px;
    margin: 10%;
    padding: 10%;
  object-fit: cover; /* evita deformación */
    
}


/* TEXTO */
.texto {
    color: white;
    font-family: trebuchet ms;
    font-size: 35px;
    text-align: center;
    max-width: 99%;
    background: orange;
    border: solid red 1px;
    border-radius: 30px;
    margin: 1%;
    padding: 20px;
    font-weight: bold;
    font-style: normal;
}

body {
    width: 1000px;
    height: 99%;
    border: none;
    border-radius: 20px;
    margin: 1%;
    padding: 1%;
    background: none;
}

