
html {
	height: 100%;
	width: 100%;
	padding: 0px;
	font-family: "Source Code Pro", monospace;
}



body {
	height: 100%;
	width: 100%;
	background-color: #FFF;
	color: #000;
	margin: 0px;
}

a {
  text-decoration: none;
  color: inherit;
}

#header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;

	display: flex;
	align-items: center;

	/* Responsive height */
	height: clamp(60px, 10vw, 100px);

	/*padding: 0 2rem;*/
	box-sizing: border-box;

	font-family: "Source Code Pro", monospace;
	/*font-size: 1.4em;*/

	background: white; /* optional */
	z-index: 1000;

	border-bottom: 1px solid lightgrey;
	justify-content: space-between;
}

#logo {
	box-sizing: border-box; 
	height: 100%;
	width: auto;
	object-fit: contain;
	padding: 0.5rem 0 0.5rem 0.5rem;
}

#menu {
	display: flex;
	flex-wrap: nowrap;
	gap: 0 1vw;

	height: 100%;
	list-style: none;
	padding: 0;
	margin: 0;
	/*margin: 0 auto;*/
	align-items: center;
}

#menu li {
	padding: 0 1vw;
	font-size: max(2vw, 1em);
	/*display: inline;*/
	display:flex;
	align-items:center;
	/*vertical-align: middle;*/
	/*border: 1px solid black;*/
	height: 100%;
	cursor: pointer;
	/*white-space: nowrap;*/
}

#menu li div {

}

#socials {
	display: flex;
	gap: 0.5rem;

	height: 100%;
	list-style: none;
	padding: 0;
	margin: 0;
	margin-right: 1rem;
	/*margin-left: auto;*/
}

#socials li {
	height: 50%;
	aspect-ratio: 1 / 1;
	cursor: pointer;
	white-space: nowrap;
	margin: auto 0;
}

/*/////////////////// CONTENT*/


#content{
	height: 100%;
	width: 100%;
	padding: 0px;
	padding-top: max(7em, 7vw);
	display: flex;
	justify-content: center;
	box-sizing: border-box; 

}

#grid { 
	height: 100%;
	width: 100%;
	padding-left: min(6.5em, 6.5vw);
	padding-right: min(6.5em, 6.5vw);
	max-width: 2800px;

	display: grid;
	grid-template-columns: repeat(
    auto-fit,
		minmax(500px, 1fr)
  );
  gap: min(2.5em, 3vw);

	height: 100%;

	box-sizing: border-box; 
	justify-content: center;
}

.grid-item {
	box-sizing: border-box; 
/*	box-sizing: border-box; 
  max-width: 800px;
  */
  width: 100%;

  justify-self: center;
  /*aspect-ratio: 1 / 1;*/
  background: #FFF;
}

.label {
	box-sizing: border-box; 
	padding: 0.3em;
  width: 100%;
  background: #FFF;
  text-align: center;
  font-size: min(3vw, 2em);
}

.thumbnail {
	box-sizing: border-box; 
  max-width: 800px;
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #FFF;
  border: 1px solid black;

}

.thumbnail img {
	display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /*object-position: center;*/
}




@media screen and (max-width: 1200px) {
	#grid { 
		grid-template-columns: repeat(
	    auto-fit,
			minmax(200px, 1fr)
	  );
	}

	.label {
	  /*font-size: 3vw;*/
	  font-size: min(3vw, 1.5em);
	}
}

