body {
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: #0033cc;
}
.button-gird-container {
  display: grid;
  grid-template-columns: repeat(32, 1fr);
  gap: 0;
  width: calc(100vh);
  max-width: calc(100vh);
  border: 1px solid #da00b5;
  line-height: 0;
}
.button-div {
  height: calc(calc(100vh / 32) - 2px);
  background-color: transparent;
  border: 1px #da00b5 solid;
  position: relative;
}
.logos {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.html-day-logo {
  filter: invert(1);
}
.compiler-logo {
  mix-blend-mode: lighten;
  width: 100px;
  filter: invert(1);
}
.grid-button {
  line-height: 0;
  padding: 0;
  margin:0;
  border-radius: 0;
  width: 100%;
  height: 100%;
  border: 0;
  cursor: pointer;
  background-color: transparent;
}

.button-popover {
  position-area: bottom;
  margin-top: .1rem;
  margin-left: .1rem;
  padding: 0;
  height: calc(100vh / 8);
  width: calc(100vh / 8);
  inset: auto;
  line-height: 0;
  border: 1px solid white;
  background-color: #03c;
  color: #fff;
  overflow: hidden;
}

.button-popover.p-image {
  height: calc(100vh / 1.2);
  width: calc(100vh / 1.2);
}

.button-popover > video {
  height: 100%;
  width: 100%;

  object-fit: cover;
}
.button-popover > a > video {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.button-popover > img {
  height: 100%;
  width: 100%;

  object-fit: cover;
}
.button-popover > a > img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
