.intro-img {
	width: 100%;
	height: 100vh;
}
.about-us-div{
	margin: 0px auto 2em;
	display: flex;
	flex-direction: row;
	align-items: center;
	width: 75%;
	background-color: var(--accent-col);
	justify-content: space- space-around;
	border-radius: 5px;
	overflow: hidden;
	padding: 8px;
	max-width: 2000px;
	color: white;
	box-shadow: 2px 2px 5px 2px rgba(0,0,150,0.2);
	transform: translateX(-30%);
	opacity: 0;
	transition: all ease-in-out 750ms;
}

.about-us-scrolled{
	transform: translateX(0vw);
	opacity: 1;
}

.about-us-img{
	width: 50%;
	height: 100%;
}

.about-us-row{
	display: flex;
	flex-direction: column;
	width: 50%;
	padding: 1.5em;
	align-self: flex-start;
	margin: 1em 0px;
	line-height: 1.5em;
}

.about-us-body{
	font-family: 'Carter One', cursive;
	word-spacing: 0.25em;
	text-align: left;
	font-size: 1.25em;
	line-height: 1.5em;
	width: 100%;
}

.about-us-name{
	display: flex;
	font-size: 2em;
	font-family: 'Luckiest Guy', cursive;
	flex-direction: column;
	margin: 0px;
	font-weight: 200;
	letter-spacing: 0.1em;
}
.about-us-name::after{
	content: '';
	height: 1px;
	width: 5em;
	margin: .5em 0px .5em;
	background-color: white;
}

.skills{
	display: flex;
	flex-direction: row;
	align-items: stretch;
	width: 100%;
	justify-content: space-around;
}

.skill-cards{
	color: white;
	background-color: var(--accent-col);
	width: 30%;
	margin: 1em;
	border-radius: 5px;
	padding: 1.5em;
	box-shadow: 2px 2px 5px 2px rgba(0,0,150,0.2);
	transform: scale(1);
	transition: transform 500ms cubic-bezier(0.31, 0.57, 0.13, 2.98);
}

.skill-cards-scrolled{
	transform: scale(1);
}

.sc-1{
	margin-left: 12.5%;
}
.sc-3{
	margin-right: 12.5%;
}

.skill-head{
	font-family: 'Luckiest Guy', cursive;
	letter-spacing: 0.1em;
	display: flex;
	font-size: 1.5em;
	flex-direction: column;
}

.skill-head::after{
	content: '';
	height: 1px;
	width: 75%;
	margin-top: 10px;
	background-color: white;
}
.skill-content{
	font-family: 'Carter One', cursive;
	width: 100%;
}


@media  (max-width: 768px){

	.intro-img{
		height: 56vw;
		margin-top: 75px;
	}

	.about-us-div{
		flex-direction: column;
	}
	.about-us-img{
		width: 100%;
	}
	.about-us-body{
		text-align: center;
	}
	.about-us-row{
		width: 100%;
	}
	.about-us-name{
		align-items: center;
	}
	body{
		font-size: 10px;
	}
	.skills{
		flex-direction: column;
		width: 75%;
		margin: 0px auto;
		align-items: center;
		justify-content: center;
	}
	.sc-1{
		margin-left: 0px;
	}
	.sc-3{
		margin-right: 0px;
	}
	.skill-cards{
		width: 100%;
		margin: 1em;
	}
}