/* view transition stuff */

@media not ( prefers-reduced-motion: reduce ) {

  @view-transition {
    navigation: auto;
  }

  #box {
	  view-transition-name: box;
  }
  
  :root::view-transition-group(*) {
    animation-duration: 0.5s;
  }  

}


/* other styles */

#box {
	aspect-ratio: 1/1;
	background-color: tomato;
	margin: 0 auto;
}

.thumb {
	width: 4rem;
}

.full {
	width: 80vw;
}