body {
  font-family: monospace;
  font-size: 12px;
  display: block;
  max-width: 900px;
  width: 90%;
  margin: 4% auto 0 auto;
  min-height: 100vh;
}

p {
  line-height: 1.6;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 5%;
  margin-bottom: 10%;
}

.video-card {
  display: block;
  overflow: hidden;
  aspect-ratio: 1 / 1;
}

.video-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

video:fullscreen {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.copyright {
  display: flex;
  font-size: 95%;
  justify-content: space-between;
  margin-top: 10%;
  margin-bottom: 15%;
  border-top: solid 3px #e5e5e5;
  padding-top: 2%;
  flex-wrap: wrap;
}
