@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700');

/*  General  */
:root {
  --ibmfont: "IBM Plex Mono", monospace; 

	--textColor: #0A100D;
	--backgroundColor: #FFF9FB;
	--detailColor: #F1AB86;
	--membershipColor: #E2C004;
}

body {
  margin: 0;	
  padding: 0;
	background-color: var(--backgroundColor);
	color: var(--textColor); 
  font-family: var(--ibmfont);	
  font-weight: 400;
}

#title-wrapper {
	margin: 10px 0 10px 0;
	padding: 0 30px 0 30px;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-content: center;
}
#title-wrapper h1 {
	font-size: 25px;
}
#title-wrapper button {
	height: 30px;
	padding: 0 20px 0 20px;
}

/*  Top Section  */
#top-container {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 5px;
}
#top-container img {
	border-radius: 15px;
}
#top-container #left-side {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-content: center;
	gap: 5px;
}
#top-container #left-side #top-level {
	display: flex;
	flex-direction: row;
	align-content: center;
	gap: 5px;
}
#top-container #left-side #top-level img {
	width: 22vw;
	height: 35vh
}
#top-container #left-side #bottom-level img {
	width: 44.3vw;
	height: 35vh;
	object-fit: cover;
}
#top-container #right-side img {
	width: 45vw;
	height: 70.5vh;
}
