/**
 * Copyright 2025 Google LLC
 * SPDX-License-Identifier: Apache-2.0
 */

body {
  font-family: helvetica, arial, sans-serif;
  margin: 2em;
}

h1 {
  margin-block-end: 0;
}

pre {
  margin-top: 1em;
  font-style: italic;
  white-space: pre-line;
}

#statusMessage {
  color: red;
}

.blur {
  animation: blur 4s ease-in 0s infinite;
}

@keyframes blur {
  0%,
  100% {
    filter: brightness(1);
  }
  50% {
    filter: brightness(3);
  }
}

button {
  margin-bottom: 12px;
}

video {
  border-radius: 24px;
  max-width: 100%;
  display: block;
}

@media screen and (min-width: 640px) {
  body {
    margin: 2em auto;
    max-width: calc(640px - 2em);
  }
}
