html, body{
	margin: 0;
    padding: 0;
    height: 100%;
    background-color: transparent;

}
* {
  -webkit-tap-highlight-color: transparent;
}

*:focus {
  outline: none;
}
#statue-container{
	scrollbar-width:none;
	width: 100%;
    height: 96%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: stretch;      
    justify-content: flex-start;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 5vh;

	

}
#statue-container>*{
    flex: 0 0 auto;
    height: 100%;              
    width: auto;               
    aspect-ratio: 1 / 1;      
    border: none;
    background: none;

}

#scroll-bar {
	position: fixed;
	bottom: 0;
	left:0;
	width: 10vw;
	height: 2vh;
	mix-blend-mode:normal;
	background: white;
	border-radius: 10vh;
	transition: transform 0.5s ease;
	opacity: 0.5;
	pointer-events:auto;
	will-change: transform;
	z-index:10;
}

