/* index.html */
body.index {
  margin: 0;
  background: #1a1a1a;
  color: #f0f0f0;
  font-family: system-ui, -apple-system, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}
nav {
  padding: 2rem;
  max-width: 800px;
}
ul {
  list-style: none;
  padding: 0;
}
li {
  margin: 1rem 0;
}
a {
  color: #6bb6ff;
  text-decoration: none;
  font-size: 1.1rem;
}
a:hover {
  text-decoration: underline;
}

/* urostomybagconnectivity.html, totooperation.html */
body.video {
  margin: 0;
  background: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}
video {
  width: 100%;
  max-width: 800px;
}
