html,body{
	background: rgb(21, 2, 26);
	width:1100;
	height:100%;
}
*{
 box-sizing: border-box;
}
	
.main-cont{
	display:flex;
	height:100%;
	 /*height: 100vh;*/
	flex-direction: row;
	align-items: stretch;
	justify-content:center;
	gap:50px;

	padding-left: 100px;
	padding-right:140px;
	padding-top: 100px;
	padding-bottom:140px;
}
.BLeft{
	display:flex;
	flex-direction: column;
	flex: 1 1 0;
	background:linear-gradient(to right,red,orange,yellow);
	justify-content: center;
	align-items: center;
	border-radius: 50px;
}
.TB1{
	display: flex;
	font-size: 150px;
	font-family:  "Fredoka One", sans-serif;
	font-weight: bolder;
	color:white;
	
}

.BRight{
	display:flex;
	flex-direction: column;
	flex: 1 1 0;
	justify-content:stretch;
	align-items: center;
	gap : 150px;

	width: 100%;
}
/*
button{
	padding: 50px 50px;
	outline: 2px solid white;
}
*/

button{
	outline: 10px solid white;
	border-radius: 50px;
	cursor:pointer;
}

.git{
	width:70%;
	display:flex;
	flex:0.22;
	flex-direction: row;
	justify-content: center;
	background: black;
	
	/*padding : 70px 130px;*/
}
.git:hover{
	background:rgb(56, 55, 55);
	transition:0.3s;
}

.gittb{
	display:flex;
	flex-direction: row;
	color:white;
	font-weight:bolder;
	font-family:  "Fredoka One", sans-serif;
	font-size:150px;

	align-items: center;

}

.socials{
	width:70%;
	display:flex;
	flex:0.15;
	flex-direction: row;
	gap: 250px;
}
.IG{
	display:flex;
	width:50%;
	background-color: rgb(204, 40, 94);
	flex-direction: row;
	align-items: center;
	justify-content: center;
}
.IG:hover{
	background:rgb(235, 152, 166);
	transition:0.3s;
}

#igtb{
	color:white;
	font-weight:bolder;
	font-size:150px;
	font-family:  "Fredoka One", sans-serif;
}

.FB{
	display:flex;
	width:50%;
	background-color: blue;
	flex-direction: row;
	align-items: center;
	justify-content: center;
}
.FB:hover{
	background:rgb(106, 113, 210);
	transition:0.3s;
}


#fbtb{
	color:white;
	font-weight:bolder;
	font-size:150px;
	font-family:  "Fredoka One", sans-serif;
}

img{
	display:flex;
	flex:0.8;
	width: 70%;
	height:100%;

	box-sizing: border-box;
	padding:180px;

	border-radius: 50%;
	object-fit: cover;
}