@view-transition {
  navigation: auto;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  min-height: 100dvh;
  background: #09090B;
  color: #fff;
  font-family: Helvetica, sans-serif;
  padding: 1rem;
}

h1 {
	margin-block: 1rem;
	text-align: center;
}

a {
  color: inherit;
}

nav {
	display: block;
	margin-bottom: 1rem;
}

nav a {
  display: block;
  text-decoration: none;
}

nav img {
  display: block;
  width: 100%;
  max-width: 100vw;
  height: auto;
}

figure {
	width: 100%;
	max-height: calc(100dvh - 2rem);
	display: flex;
  justify-content: center;
}

figure a {
	display: block;
	display: flex;
  justify-content: center;
	max-width: 100%;
	max-height: 100%;
}

figure + figure {
	margin-top: 1rem;
}

figure img {
  display: block;
	max-width: 100%;
	max-height: 100%;
  object-fit: contain;
}

