@font-face {
  font-family: "Monument";
  src: url("../fonts/monument.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

.wrapper {
	position: absolute;
	height: 100%;
	width: 100%;
	padding: 10px;

	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 10px;
	align-items: center;
}

.wrapper img {
	justify-self: center;
	max-height: 80vh;
}


/* STUDIO */
.studio-wrapper {
	width: 100%;
	padding: 100px 10px 10px 10px;

	display: grid;
	grid-template-columns: repeat(12, 1fr);
	gap: 10px;
	align-items: flex-start;
}

.studio-wrapper h2 {
	grid-column: span 2;
}

.projects-container {
	display: grid;
	grid-column: span 10;
	grid-template-columns: subgrid;
	grid-row-gap: 40px;
}

#paintings > div {
	grid-column: span 5;
}

#collages > div {
	grid-column: span 2;
}

.project-info {
	display: flex;
	width: 100;
	justify-content: space-between;
	text-transform: uppercase;
}

.project-card img {
	width: 100%;
}

body {
	width: 100vw;
	margin: 0;
	overflow-x: hidden;
}

h1, h2, h3, a, p, button {
	font-size: 16px;
	font-weight: 400;
	text-decoration: none;
	color: #000;
	font-family: 'Monument';
	margin: 0;
}

header {
	position: fixed;
	z-index: 9999;
	width: 100%;
	padding: 10px;
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	gap: 10px;
}

header > :first-child {
	grid-column: span 2;
}

footer {
	position: fixed;
	bottom: 10px;
	left: 10px;
}

button {
	padding: 5px 10px;
	border: none;
}