body {
	background-color: #000010;
	min-height: 100vh;
	margin: 0;

	display: flex;
	flex-direction: column;
}

.mainblock {
	background-color: #151520;
	width: 80vw;
	min-height: 100vh;
	margin: 0 auto;
	flex: 1;

	min-height: 100vh;
	display: flex;
	flex-direction: column;
	position: relative;
}

.big_img {
	width: 100%;
	height: 100%;
	padding: 20px;
	border-radius: 40px;
	box-sizing: border-box;
	transition:
		scale 0.2s ease-in-out,
		border-radius 0.2s ease-in-out;
}

.big_img:hover {
	scale: 1.04;
	border-radius: 5px;
}

.separator {
	display: block;
	width: calc(100% - 32px);
	height: 4px;
	border-radius: 2px;
	background-color: #ffffff;
	margin: 4px 16px;
}

.madeby {
	display: flex;
	justify-content: center;
	padding: 0px;
	margin-top: auto;
	align-self: center;
	color: #ffffff;
	font-family: sans-serif;
}

.base_text {
	font-family: sans-serif;
	color: #ffffff;
	margin: 0px 16px;

	display: flex;
	align-items: center;
	justify-content: space-between;
}

.main_text {
	font-family: roboto;
	color: #ffffff;
	margin: 0px 16px;
	font-size: 17px;
}

.techs {
	display: flex;
	justify-content: flex-end;
	gap: 8px;
	font-size: 45px;
}

.content {
	width: 50%;
	height: auto;
	display: block;
}
