body{
	background-color:white;
	color:white;
	font-family: "Caveat Brush", static;
}
header{
	background-color:white;
	color: #791519;
	height: 100px;
	font-size: 4em;
	font-family: "Caveat Brush", static;
}
header img{
	width: 100%;
}
nav{
	background-color:cornsilk;
	font-family: "Caveat Brush", static;
}

nav ul li{
	display: inline;
	margin-right: 50px;
	font-size: 2em;
}	
nav ul li a{
	color: #FFAE00;
	text-decoration: none;
	list-style-type: none;
}

section{
	background-color: none;
	font-family: 'Times New Roman', Times, serif, static;
	color:black;
	font-size: 1.2em;
	height: 100px;
	width: 1400px;
	margin: 30px;
	padding: 5px;
	text-decoration: none;
	list-style-type: none;
	float: right;
}
footer{
	font-family: "Caveat Brush", static;
	color:darkgrey;
	font-size: 1em;
	width: 100%;
	float: left;
}

.multi-carrusel-contenedor {
    position: relative;
    max-width: 1000px;
    margin: 40px auto;
    display: flex;
    align-items: center;
}

.visor-multi {
    width: 100%;
    overflow: hidden;
    margin: 0 10px;
}

.tira-imagenes {
    display: flex;
    gap: 15px;
    transition: transform 0.5s ease-in-out;
}

.tira-imagenes img {
    width: calc(33.33% - 10px); 
    flex-shrink: 0;
    border-radius: 10px;
    object-fit: cover;
}

.flecha {
    background: #333;
    color: white;
    border: none;
    padding: 15px;
    cursor: pointer;
    border-radius: 50%;
    z-index: 10;
}

.flecha:hover { background: #555; }
