body {
  background-color: black;
  color: white;
  margin: 0;
  padding: 0;
 font-family: Arial, sans-serif;
  overflow-x: hidden;
}

.container {
  padding-top: 40px;
  text-align: center;
}

h1 {
  font-size: 20px;
  color: #ff0033;
  text-shadow: 0 0 5px red;
  margin-bottom: 40px;
}

.image-row {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.imagen {
  width: auto;
  max-width: 250px;
  height: auto;
  display: block;
}

.vhs-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('vhs.gif') repeat;
  opacity: 0.08;
  pointer-events: none;
  z-index: 10;
}
.logo-anclado {
  position: fixed;
  bottom: 10px;
  right: 10px;
  z-index: 20;
  opacity: 0.85;
  transition: opacity 0.3s ease;
}

.logo-anclado:hover {
  opacity: 1;
}

.logo-anclado img {
  max-width: 120px;
  height: auto;
}
