.main_container {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	margin-left: 3%;
	margin-right: 3%;
	gap: 3%;
	max-width: 100%;
	/*border: 0.5px solid rgb(208, 160, 236);*/
}

/*Container*/
.text_container {
	position: relative; 
  	width: 42%;
  	min-height: 70%;
	margin-top: 3%;
	margin-left: 5%;
	margin-bottom: 3%;
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	justify-content: flex-start;
	overflow-wrap: break-word;
	word-break: break-word;
	hyphens: auto;
	border: 0.5px solid rgb(255, 255, 255);
}

.img_container {
	min-height: 40%;
	width: 42%;
	margin-top: 3%;
	margin-right: 5%;
	margin-bottom: 3%;
	padding-top: 2%;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	overflow-wrap: break-word;
	word-break: break-word;
	hyphens: auto;
	border: 0.5px solid rgb(255, 255, 255);
}

/*Content Classes*/
.main_text {
	order: 0;
	margin-top: 5.5%;
	margin-left: 8%;
	margin-right: 8%;
	text-align: left;
	border-radius: 0px;
	align-self: flex-start;
	/*border: 0.5px solid white;*/
}

.main_img {
	position: static;
	justify-self: center;
	margin-left: 31%;
	width: 35%;
  	height: auto;
	border-radius: 60%;
	object-fit: cover;
	/*border: 0.5px solid rgb(227, 27, 143);*/
}

.projects {
	order: 1;
	margin-top: 5.5%;
	margin-left: 8%;
	margin-right: 8%;
	
	text-align: left;
	border-radius: 0px;
	align-self: flex-start;
	/*border: 0.5px solid white;*/
}

.contacts {
	order: 2;
	margin-top: 5.5%;
	margin-left: 8%;
	margin-right: 8%;
	margin-bottom: 5.5%;
	text-align: left;
	border-radius: 0px;
	align-self: flex-start;
	/*border: 0.5px solid white;*/
}

.friends {
	order: 2;
	margin-top: 5.5%;
	margin-left: 8%;
	margin-right: 8%;
	margin-bottom: 5.5%;
	min-width: 90%;
	text-align: left;
	border-radius: 0px;
	align-self: flex-start;

}

/* Extras below the containers*/
.webring {
	display: flex;
	justify-content: center;
}

.privacy {
	display: flex;
	justify-content: center;
}

/* Others */

.friends_button {
	display: flex;
	flex-direction:row;
	align-self: flex-start;
	gap: 2%;
	flex-wrap: wrap;
}
.people_text_button {
    width: 86px;
    height: 29px;
	border-radius: 8%;
    text-align: center;
	align-content: center;
	font-weight: bold;
	border: 1px solid white;
}

/*Media section*/
@media (max-width: 800px) {
	.main_container {
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}
	.text_container, .img_container {
		min-width: 0;
		flex-direction: column;
		width: 99%;
		margin-left: auto;
		margin-right: auto;       
		height: auto;
	}
}

@media (hover: hover) {
	.text_container:hover {
		transition-duration: 0.5s;
  	}
}

@media not all and (hover: hover) {
  .text_container::after {
    content: "" attr(title) "";
  }
}