/* style.css */

* {
	box-sizing: border-box;
}

html {
	font-size: calc(8px + 1vmin);
}

body {
	font-family: 'GoogleSans', sans-serif;
	font-size: 1rem;
	height: 100%;
	padding: 0;
	margin: 0;
	color: #fff;
	background-color: #202124;
}

#All {
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	right: 0;
}

#Content {
	text-align: center;
}

.product {
	font-weight: 500;
}

h1 {
	font-size: 4.6rem;
	margin: 2rem 0;
	line-height: 4.8rem;
	color:#FBBC05;
}

h2 {
	font-size: 2.6rem;
	line-height: 3.2rem;
	font-weight: normal;
	margin: 0;

}

h3 {
	font-size: 1.6rem;
	font-weight: normal;
	margin: 0;
}

#Gallery {
	text-align: center;
}

#Gallery h1 {
	font-size: 0;
	height:5rem;
	background-image: url(../img/SuperG_Pixel_vert_white.svg);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}

#Images {
	font-size: 0;
}

.galleryImage {
	margin: 0.5vmin;
	padding: 1px;
	background-color: rgba(255,255,255,0.5);
	display: inline-block;
	position: relative;
	clear: both;
	line-height: 0;
	box-shadow: 0px 4px 8px black;
}

.galleryImage img,
.galleryImage video {
	width: 20rem;
	height: 20rem;
	object-fit: cover;
	max-width: 48vmin;
	max-height: 48vmin;
}

#NoImages {
	display: none;
	line-height:40rem;
}

.__visible {
	display: block !important;
}

.downloadLink {
	box-sizing: border-box;
	position: absolute;
	display: inline-block;
	background-color: white;
	color: white;
	padding: 0.5rem;
	text-decoration: none;
	border-radius: 2rem;
	border-top-right-radius: 0;
	top:0;
	right:0;
	width:4rem;
	height:4rem;
	background-image:url(../img/file_download_FILL0_wght400_GRAD0_opsz48.svg);
	background-size: 3rem;
	background-repeat: no-repeat;
	background-position: center;
	box-shadow: 0 0 8px rgba(32,33,36,0.25);
}

