/* BASE */

body {
  margin: 0;
  background: black;
  color: white;
  font-family: sans-serif;
}

/* BARRA SUPERIOR */

.top {
  position: fixed;
  top: 0;
  left: 0;

  width: 100%;
  height: 60px;

  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0 20px;

  background: black;
  border-bottom: 2px solid white;
  z-index: 1000;
}

.logo {
  height: 40px;
}

.top a {
  color: white;
  text-decoration: none;
}

.top a:hover {
  text-decoration: underline;
}

/* CONTENEDOR GALERÍA  */

.contenedor {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;

  padding: 40px;
  margin-top: 80px; /* espacio para la barra */
}

/* CAJAS */

.box {
  border: 3px solid white;
  padding: 20px;
  text-align: center;

  width: 300px;
}


.box img {
  max-width: 100%;
  height: auto;
}

/* tamaños específicos (sin uso ahora jajaxdlol) */
