body {
  font-family: Arial, sans-serif;
  margin: 0;
  background-color: #111;
  color: #fff;
  cursor: url('img/cursor.png'), auto;
  text-align: center;
}
a, button, .clickable {
  cursor: url('img/cursor.png'), pointer;
}

header {
  background-image: url('img/banner3.png');
  padding-bottom: 38%;
  text-align: center;
  background-repeat: no-repeat;
  background-size: 100%;
  position: relative;
}

.catalogo {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 20px;
  gap: 20px;
}

.pelicula {
 background-color: #1c1c1c;
  border-radius: 10px;
  padding: 15px;
  width: 200px;
  text-align: center;
  box-shadow: 0 0 10px rgba(255,255,255,0.1);
  overflow: hidden;
  position: relative;
}
.imagen-container {
  position: relative;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
}
.pelicula img {
  width: 100%;
  display: block;
  border-radius: 8px;
  }

.sinopsis-hover {
   position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0,0,0,0.85);
  color: #fff;
  font-size: 14px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  padding: 15px;
  text-align: center;
  transition: opacity 0.3s ease-in-out;
  border-radius: 8px;
  box-sizing: border-box;
}


.imagen-container:hover .sinopsis-hover {
  opacity: 1;
}

.pelicula h2 {
  margin: 10px 0 5px;
  font-size: 16px;
  color: #fff;
}

.pelicula a {
  color: #00ff88;
  text-decoration: none;
  font-weight: bold;
}

.info h2 {
  font-size: 18px;
  margin: 10px 0 5px;
}

.info a {
  color: #00ff88;
  text-decoration: none;
  font-weight: bold;
  
}

#buscador {
  padding: 10px;
  font-size: 16px;
  width: 80%;
  max-width: 400px;
  margin: 20px auto;
  display: block;
  border-radius: 8px;
  border: none;
  justify-content: left
  
}

h3 { font-size: 15px;

}

@font-face {
  font-family: 'Nashville';
  src: url('fonts/Nashville.ttf') format('truetype');
}


#boton-arriba {
  position: fixed;
  bottom: 40px;
  right: 40px;
  display: none;
  z-index: 1000;
}

#boton-arriba img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  transition: transform 0.3s;
}

#boton-arriba:hover img {
  transform: scale(1.1);

}
p {display: none;}

 footer{
 background-color: #111;
  background-size: cover;
 color: #ffffff;

}
#btn-aleatoria{
  background-color: #ffffff;
  font-size: 40px;
  font-family: Nashville, sans-serif;
}
