body {
background: linear-gradient(135deg, #ffbf00, #800020);
font-: Arial, sans-serif;
color: #ffbf00;
margin: 0;
padding: 0;
text-align: center;
}
.container {
display: flex;
flex-direction: column;
align-items: center;
gap: 25px;
max-width: 950px;
margin: auto;
padding: 30px 0;
}
.container img {
width: auto;
max-width: 100%;
border-radius: 10px;
box-shadow: 0 0 12px rgba(255, 191, 0, 0.4);
transition: transform 0.3s, box-shadow 0.3s;
}
.container img:hover {
transform: scale(1.05);
box-shadow: 0 0 25px rgba(255, 191, 0, 0.7);
}
/* Redes sociales grandes al final */
.socials {
display: flex;
justify-content: center;
gap: 50px;
margin-top: 30px;
flex-wrap: wrap;
}
.socials img {
width: 180px;
height: 180px;
border-radius: 10px;
transition: transform 0.3s, box-shadow 0.3s;
box-shadow: 0 0 12px rgba(128, 0, 32, 0.6);
}
.socials img:hover {
transform: scale(1.12);
box-shadow: 0 0 20px rgba(255, 191, 0, 0.9);
}
/* Íconos flotantes */
.socials-fixed {
;
top: 15px;
left: 15px;
display: flex;
flex-direction: column;
gap: 12px;
z-index: 9999;
}
.socials-fixed img {
width: 55px;
height: 55px;
border-radius: 8px;
box-shadow: 0 0 10px rgba(255, 191, 0, 0.6);
transition: transform 0.3s, box-shadow 0.3s;
}
.socials-fixed img:hover {
transform: scale(1.2);
box-shadow: 0 0 20px rgba(255, 191, 0, 1);
}