TicketMerc/Interfaz/estilos/Artistas.css

101 lines
1.7 KiB
CSS

body {
font-family: 'Trebuchet MS', sans-serif;
background-color: #2E2E2E;
text-align: center;
margin: 0;
padding: 0;
overflow: hidden;
}
.background-container {
position: fixed;
top: 0;
left: 0;
width: 100vw;
height: 100vh;
z-index: -1; /* Para que quede de fondo */
}
.linea {
position: absolute;
width: 1000px;
}
.linea2 {
position: absolute;
width: 1300px;
}
.linea:nth-child(2) { top: 32%; left: -10%; }
.linea2:nth-child(1) { top: 26%; right: 37%; }
.linea:nth-child(4) { bottom: 36%; left: 50%; }
.linea2:nth-child(3) { bottom: 15%; right: -21%; }
.blur-overlay {
position: fixed;
top: 0;
left: 0;
width: 100vw;
height: 100vh;
background: rgba(12, 15, 20, 0.76);
backdrop-filter: blur(10px);
z-index: 0;
}
.titulo {
position: relative;
z-index: 1;
color: aliceblue;
font-size: 20px;
text-align: center;
margin-top: 60px;
}
#pelicula {
display: flex;
justify-content: center;
align-items: center;
height: 70vh;
gap: 40px;
margin-top: 20px;
}
.artista {
position: relative;
overflow: hidden;
cursor: pointer;
width: 450px;
height: 450px;
transition: transform 0.3s ease;
}
.artista:hover {
transform: scale(1.15);
}
.artista img {
width: 100%;
height: 100%;
object-fit: cover;
}
.overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.5);
color: white;
display: flex;
align-items: center;
justify-content: center;
font-size: 20px;
opacity: 0;
transition: opacity 0.3s ease;
}
.artista:hover .overlay {
opacity: 1;
}