@import url('https://fonts.googleapis.com/css?family=Inter:300,regular,500,600,700,800,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');
* {
	padding: 0rem;
	margin: 0rem;
	border: 0rem;
}

body {
	min-width: 20rem;
	color: #000;
	font-family: 'Inter';
	font-size: 1rem;
}

.index{
   display: grid;
   place-items: center;
   height: 100vh;
}


.index__container {
	max-width: 75rem;
	margin: 0 auto;
	padding-left: 0.9375rem;
	padding-right: 0.9375rem;
}
/* Generated by vite-plugin-svg-spritemap */
body {
	font-family: 'Raleway', sans-serif;
	height: 100vh;
	width: 100vw;
	background: #f2f2f2;
}
main {
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	position: relative;
}
.projects {
	display: flex;
	flex-direction: column;
	width: 62.5rem;
}
.project {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 3rem 8rem;
	border-top: 0.0625rem solid rgba(0, 0, 0, 0.2745098039);
	cursor: pointer;
}
.project h2 {
	font-size: 3.5rem;
	font-weight: 500;
	transition: 0.5s ease;
}
.project p {
	transition: 0.5s ease;
}
.project:last-child {
	border-bottom: 0.0625rem solid rgba(0, 0, 0, 0.2745098039);
}
.project:hover {
	opacity: 0.5;
}
.project:hover h2 {
	transform: translateX(-0.9375rem);
}
.project:hover p {
	transform: translateX(0.9375rem);
}
.project-thumbnail {
	position: fixed;
	width: 25rem;
	height: 15.625rem;
	display: flex;
	flex-direction: column;
	overflow: hidden;
	pointer-events: none;
	top: 0;
	left: 0;
	transform-origin: center center;
}
.thumbnail {
	width: 100%;
	height: 100%;
}
.thumbnail img {
	width: 100%;
	height: 100%;
	object-fit: cover;
} 