body {
  font-family: monospace;
  font-size: 13px;
  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;
}

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

.video-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1%;
  margin-top: 5%;
}

.video-item {
  margin-bottom: 3%;
  background-color: #fff;
  overflow: hidden;
  text-align: center;
  margin-top: 1%;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}

.video-item img {
  width: 100%;
  height: 50%;
  display: block;
  object-fit: cover;
}

.video-item p {
  margin: 10px;
  font-size: 90%;
  color: #333;
}
*/

.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;
}
