/*! minireset.css v0.0.6 | MIT License | github.com/jgthms/minireset.css */html,body,p,ol,ul,li,dl,dt,dd,blockquote,figure,fieldset,legend,textarea,pre,iframe,hr,h1,h2,h3,h4,h5,h6{margin:0;padding:0}h1,h2,h3,h4,h5,h6{font-size:100%;font-weight:normal}ul{list-style:none}button,input,select{margin:0}html{box-sizing:border-box}*,*::before,*::after{box-sizing:inherit}img,video{height:auto;max-width:100%}iframe{border:0}table{border-collapse:collapse;border-spacing:0}td,th{padding:0}

* {
	box-sizing: border-box;
}

body {
	font-family: serif;
	text-align: center;
		
	padding: 0 0 50px;
}

h1 {
	font-size: 1em;
	font-weight: normal;
	font-style: italic;
	position: absolute;
	top: 10px;
	width: 100%;
	color: #fff;
	z-index: 2;
}

img {
	width: auto;
	height: auto;
	max-height: 600px;
	max-width: 100%;
	margin: 0 0 15px;
}

.label {
	text-align: left;
	margin: 0 20px 50px;

	td:first-child {
		display: none;
	}

	tr{
		&:nth-child(3){
			color: #555;
		}
		&:nth-child(4){
			color: #777;
		}
		&:nth-child(5){
			color: #999;
		}
	}
}


select {
	position: relative;
	z-index: 3;
}

.collection {
	max-width: 100%;
	text-align: left;
	margin: 40px 0 0;
	table-layout:fixed;
}

.collection td, 
.collection th {
	padding: 0 10px 0 5px;
}

.collection th {
	text-decoration: underline;
}

.collection tr {
	cursor: pointer; 
}

.collection tr:hover {
	text-decoration: underline;
}

.collection td:last-child {
	word-wrap: anywhere;
}

footer {
	position: fixed;
	height: 30px;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 5px 5px;
	text-align: right;
}

.ray-of-light {
	display: grid;
	background: #FFE98D;
	grid-template-columns: 1fr 1fr;
	grid-template-rows: 1fr 1fr;
	width: 30%;
	height: 50%;
	position: fixed;
	bottom: 30%; 
	right: 30%;
	opacity: .2;
	transform: skewY(15deg);
	filter: blur(30px);
	user-select: none;
	transition: height .3s ease-out;
	gap: 10px;
}

[for="blinds-open"]{
	position: relative;
	display: inline-block;
	outline: none;
	background: none;
	border: none;
	cursor: pointer;
}
[name="blinds-open"]{
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	position: relative;
	font-size: inherit;
	width: 2em;
	height: 1em;
	box-sizing: content-box;
	border: 1px solid;
	border-radius: 1em;
	vertical-align: text-bottom;
	margin: auto;
	color: inherit;
	cursor: pointer;

	&::before {
		content: "";
		position: absolute;
		top: 50%;
		left: 0;
		transform: translate(0, -50%);
		box-sizing: border-box;
		width: 0.7em;
		height: 0.7em;
		margin: 0 0.15em;
		border: 1px solid;
		border-radius: 50%;
		background: #fff;
		transition: transform 0.2s ease-out;
	}

	&:checked::before {
	  transform: translate(1em, -50%);
	}
}

@media screen and (min-width: 900px){
	body {
		display: grid;
		grid-template-columns: 1fr 2fr;
		grid-template-areas: "label image image";
		align-items: center;
		justify-items: center;
		height: 100vh;
	}

	h1 {
		color: #000;
	}

	img {
		max-width: 100%; 
		max-height: 750px;
		grid-area: image;
	}

	.label {
		grid-area: label;
	}

	footer {
		bottom: unset;
		top: 0;
		border: none;
		background: none;
		z-index: 2;
	}
}
