/* #a34606 is the text-safe orange (6.1:1 vs white, clears WCAG AA); the
   vivid #ec6608 (3.25:1) is kept only on .titulo below, which is large
   enough (default h1 size, ~32px bold) to clear the AA large-text
   threshold (3:1) on its own. See css/estilo.css for the full rationale. */
body {
  margin: 0;
  overflow: hidden;
  background: #ffffff;
  font-family: "Mirador", sans-serif;
  font-weight: 400;
  color: #a34606;
}

canvas {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  filter: blur(18px) contrast(180%) saturate(140%);
  opacity: 0.9;
  mix-blend-mode: multiply;
}

.encabezado {
  position: absolute;
  top: 0;
  left: 0;
  margin: 1rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25rem;
  pointer-events: none;
  z-index: 10;
}

.titulo {
  margin: 0;
  font-weight: 700;
  color: #ec6608;
  pointer-events: none;
}

.volver {
  font-family: inherit;
  font-size: 0.8rem;
  font-weight: 700;
  color: #a34606;
  background: #ffffff;
  border: 1.5px solid #a34606;
  border-radius: 999px;
  padding: 0.3rem 0.75rem;
  text-decoration: none;
  cursor: pointer;
  pointer-events: auto;
  transition: background-color 0.15s ease, color 0.15s ease;
}

.volver:hover,
.volver:focus-visible {
  background: #a34606;
  color: #ffffff;
}

/* cells */
.blob {
  position: absolute;
  top: 0;
  left: 0;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  overflow: hidden;
  pointer-events: auto;
  cursor: pointer;
  touch-action: none;
}

@media (max-width: 600px) {
  .blob {
    width: 84px;
    height: 84px;
  }
}

/* text */
.content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 78%;
  text-align: center;
  font-size: 14px;
  line-height: 1.2;
  pointer-events: none;
}

@media (max-width: 600px) {
  .content {
    font-size: 11px;
  }
}

/* black on the light goo fill (js/equipo.js): worst case across every
   random hue is still ~12:1 (WCAG AA needs 4.5:1) */
.nombre {
  font-weight: 700;
  color: #000000;
}

.departamento {
  font-weight: 400;
  color: #000000;
}

.inst {
  font-weight: 100;
  color: #000000;
  opacity: 0.8;
}
