@charset "utf-8";
/* CSS Document */
body{
    margin:0;
    background: linear-gradient(to right, #D8C1B0, #E7D9CF);
    font-family: Arial, sans-serif;
}

.titulo{
    text-align:center;
    padding:0.2px;
    background: linear-gradient(to right, #6F4E37, #BA9173);
    color:white;
}

.titulo h1{
    font-size:30px;
    margin:0;
    letter-spacing:2px;
    text-shadow:2px 2px 5px black;
    font-family:Cooper Black;
}

.navbar{
    background: linear-gradient(to right, #B1897C, #C2A399);
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    padding:10px;
}

.navbar a{
    color:white;
    text-decoration:none;
    margin:5px;
    padding:10px 15px;
    border-radius:20px;
    transition:0.3s;
    font-weight:bold;
	font-family: Rockwell Condensed;
	font-size: 20px;
}

.navbar a:hover{
    background:#D8C1B0;
    transform: scale(1.1);
}

.titulo-principal{
    text-align: center;
    font-size: 45px;
    color: #6F4E37;
    margin-top: 20px;
    margin-bottom: 10px;
    font-family: "Cooper Black", serif;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.3);

    animation: aparecer 1.5s ease;
}

.titulo-principal::after{
    content: "";
    display: block;
    width: 120px;
    height: 4px;
    background: #BA9173;
    margin: 10px auto;
    border-radius: 5px;
}

@keyframes aparecer{
    from{
        opacity: 0;
        transform: translateY(-20px);
    }
    to{
        opacity: 1;
        transform: translateY(0);
    }
}

.titulo-principal:hover{
    letter-spacing: 3px;
    transition: 0.3s;
}

.contenedor-tarjetas{
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    padding: 20px;
}

.card{
    width: 300px;
    background: rgba(255,255,255,0.9);
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    text-align: center;
    transition: 0.3s;
}

.card:hover{
    transform: translateY(-10px) scale(1.03);
}

.card h2{
    margin-bottom: 10px;
	color:#BA9273;
	font-family: Comic Sans MS;
}

.card p{
    text-align: justify;
    color: #333;
	font-family: Papyrus;
}

.card img{
    width: 100%;
    border-radius: 10px;
    margin-top: 10px;
}

footer{
    text-align:center;
    padding:0.1px;
    background: rgba(0,0,0,0.5);
    color:white;
    position:fixed;
    bottom:0;
    width:100%;
	font-family: MV Boli;
}