@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  src: url("/fonts/roboto/roboto-v30-latin-regular.woff2") format('woff2'), url("/fonts/roboto/roboto-v30-latin-regular.woff") format('woff'); /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 700;
  src: url("/fonts/roboto/roboto-v30-latin-700.woff2") format('woff2'), url("/fonts/roboto/roboto-v30-latin-700.woff") format('woff'); /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
body {
  font-family: "Roboto";
  font-size: 25px;
  font-weight: 700;
}
body #header {
  font-size: 0.7em;
  color: #000;
}
@media (max-width: 768px) {
  body {
    font-size: 14px;
  }
  body #header {
    font-size: 1em;
  }
}
body,
html {
  padding: 0;
  margin: 0;
}
html {
  box-sizing: border-box;
}
*,
*:before,
*:after {
  box-sizing: inherit;
}
section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
}
section.landscape {
  flex-direction: row;
}
section.landscape #s-next,
section.landscape #s-prev {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
}
section.landscape #arrows {
  position: absolute;
}
section #header {
  position: fixed;
  top: 5px;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 2;
}
section #reset {
  position: fixed;
  top: 0;
  left: 10px;
  width: 25px;
  height: 35px;
  line-height: 0;
}
section #reset svg {
  padding: 0;
}
section #header,
section #reset,
section #arrows {
  fill: #000;
}
section #arrows {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  display: flex;
  justify-content: space-between;
}
section #arrows svg {
  width: 40px;
  height: 40px;
}
section #s-next,
section #s-prev {
  z-index: 10;
}
section #s-next {
  right: 20px;
}
section #s-prev {
  left: 20px;
}
section #ctx {
  position: relative;
  display: grid;
  grid-template-areas: "top-left top-center long-line" "short-line center long-line" "short-line bottom-center long-line";
  grid-gap: 6%;
  grid-auto-columns: 1fr;
  aspect-ratio: 1;
}
section #ctx:before,
section #ctx video,
section #ctx img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}
section #ctx #logo {
  opacity: 0.3;
}
section #ctx #logo,
section #ctx video,
section #ctx img,
section #ctx:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
section #ctx div {
  background-color: #000;
}
section #ctx div span {
  position: absolute;
  top: 2vh;
  width: 100%;
  text-align: center;
}
section #ctx #i1 {
  grid-area: top-left;
}
section #ctx #i2 {
  grid-area: top-center;
}
section #ctx #i3 {
  grid-area: long-line;
}
section #ctx #i4 {
  grid-area: short-line;
}
section #ctx #i5 {
  grid-area: center;
}
section #ctx #i6 {
  grid-area: bottom-center;
}
body {
  background-color: #fff;
  color: #fff;
  fill: #fff;
}
.dontselect {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
[noevents] {
  pointer-events: none;
}
section[data-active] #ctx {
  background-color: rgba(255,255,255,0);
  pointer-events: none;
}
section[data-active] #ctx div {
  opacity: 0;
}
section #header,
section #s-next,
section #s-prev,
section #reset {
  opacity: 0;
  transition: opacity 1s ease;
}
section.active #header,
section.active #s-next,
section.active #s-prev,
section.active #reset {
  opacity: 1;
}
section #ctx {
  overflow: hidden;
  transition: background-color 0.5s ease;
  background-color: #fff;
  border-radius: 2%;
}
section #ctx:before {
  background-color: #fff;
  content: "";
}
section #ctx svg,
section #ctx video,
section #ctx img {
  pointer-events: none;
}
section #ctx img,
section #ctx video {
  display: none;
}
section #ctx img[src],
section #ctx video[src] {
  display: block;
}
section #ctx div {
  border-radius: 3%;
  background-position: 50% 50%;
  background-size: cover;
  transition: opacity 0.5s ease;
  position: relative;
}
section #ctx div span {
  color: #fff;
}
