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

	display: flex;
	flex-direction: column;
}

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

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

.avatar_container {
	display: flex;
	align-items: flex-start;
	gap: 30px;
}

.avatar_content {
	font-family: sans-serif;
	color: #ffffff;
	margin-left: 30px;
}

.avatar {
	width: 90px;
	height: 90px;
	rotate: -7deg;
	border-radius: 25px;
	margin-top: 35px;
	margin-left: 35px;
	animation: rotateImage 3s ease-in-out infinite alternate;
}

@keyframes rotateImage {
	from {
		transform: rotate(-2deg);
	}

	to {
		transform: rotate(7deg);
	}
}

.hitext h1 {
	font-family: sans-serif;
	color: #ffffff;
	margin: 0;
	font-size: 24px;
	margin-top: 20px;
}

.hitext h2 {
	font-family: sans-serif;
	color: #ffffff;
	margin: 0;
	font-size: 20px;
}

.hitext h3 {
	font-family: sans-serif;
	color: #a0a0a0a0;
	margin: 0;
	font-size: 9px;
}

.into_list {
	font-family: sans-serif;
	line-height: 1.5;
	color: #f0f0f0;
	font-size: 18px;
	margin-top: 3px;
	padding-left: 25px;
}

.socials {
	padding-left: 0;
	margin-left: 15px;
}

.socials li,
.socials a {
	align-items: center;
	gap: 8px;
	list-style: none;
	display: flex;
	text-decoration: none;
	color: inherit;
}

.socials img {
	width: 20px;
	height: 20px;
}

.my_projects {
	font-family: sans-serif;
	color: #ffffff;
	margin-left: 30px;
}

.my_projects_list {
	display: grid;
	grid-template-columns: repeat(auto-fill, 280px);
	gap: 20px;
}

.project_item {
	position: relative;
	width: 280px;
	height: 140px;
	background: #222;
	border-radius: 10px;
	transition:
		scale 0.2s ease-in-out;
}

.project_item:hover {
	scale: 1.075;
	background: #333;
}

.project_img {
	width: 100%;
	height: 100%;
	padding: 5px;
	box-sizing: border-box;
}

.project_img_inner {
	height: 100%;
	overflow: hidden;
}

.project_img_inner img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 5px;
}

.project_text {
	position: absolute;
	right: 10px;
	bottom: 0px;

	color: #ffffff;
}

.project_techonologia {
	position: absolute;
	left: 10px;
	top: 10px;
	font-size: 25px;

	color: #ffffff;
}

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