body {
	background-color: var(--background-color);
	background-image: radial-gradient(rgba(255, 255, 255, 0.2) 1px, transparent 1px);
	background-size: 32px 32px;
	-ms-overflow-style: none;
	scrollbar-width: none;
}

body::--webkit-scrollbar {
	display: none;
}

body.menu-open {
	overflow: hidden;
	height: 100vh;
}

h1 {
	font-family: var(--heading-font);
	color: var(--accent-color1);
	margin: 0 1em;
	font-size: 3.25em;
	letter-spacing: -.02em;
	text-align: center;
}

p,
span {
	font-family: var(--body-font);
	color: var(--accent-color2);
}

section {
	width: 100%;
}

.section {
	width: 100%;
	background: transparent;
	margin-top: 1em;
	padding: 1.5em;
}

.section1 .content {
	width: 100%;
	min-height: 45vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 1em;
	position: relative;
	border-radius: var(--brad);
	background-color: transparent;
	border: 1px solid var(--accent-color2);
	inset: -.30em;

	& p {
		text-align: center;
		margin: 0 1em;
	}
}

.section1 .content::after {
	content: "";
	position: absolute;
	left: 10px;
	top: 10px;
	width: 100%;
	height: 100%;
	background: transparent;
	border-radius: var(--brad);
	border: 3px solid var(--accent-color1);
	z-index: -1;
	pointer-events: none;

}

.skills {
	display: flex;
	flex-direction: row;
	margin: 0;
	padding: 0;
}

.skill-tags {
	display: inline-block;
	font-size: 12px;
	color: var(--accent-color);
	/* margin-top: 1em; */
	margin-right: .5em;
	padding: .35em 1.25em;
	border: 1px solid var(--accent-color);
	border-radius: 1em;
}

.section2 .content {
	width: 100%;
	border-radius: var(--brad);
	background-color: var(--accent-color2);
	padding: 1.5em;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: stretch;
	text-align: center;
	gap: 1em;
	flex-wrap: wrap;
}

.section2 .content div {
	width: calc(100% / 3);
	border-radius: calc(var(--brad) / 2);
	flex-wrap: wrap;
	height: 50vh;
	background-position: center center;
	background-repeat: no-repeat;
	box-shadow: 4px 2px 12px rgba(0, 0, 0, .1);

	&:nth-child(1) {
		flex-grow: 1;
		background-image: url(../img/brandidentity/brandIdentity-02.webp);
		background-size: cover;
	}

	&:nth-child(2) {
		flex-grow: 1;
		background-image: url(../img/brandidentity/brandIdentity-01.webp);
		background-size: cover;
	}

	&:nth-child(3) {
		flex-grow: 1;
		background-image: url(../img/brandidentity/brandIdentity-04.webp);
		background-size: cover;
	}

	&:nth-child(4) {
		flex-grow: ;
		background-image: url(../img/brandidentity/brandIdentity-03.webp);
		background-size: cover;
	}

	&:nth-child(5) {
		flex-grow: ;
		background-image: url(../img/brandidentity/brandIdentity-05.webp);
		background-size: cover;
	}

	&:nth-child(6) {
		flex-grow: 1;
		background-image: url(../img/brandidentity/brandIdentity-06.webp);
		background-size: cover;
	}

	&:nth-child(7) {
		flex-grow: 1;
		background-image: url(../img/brandidentity/brandIdentity-07.webp);
		background-size: cover;
	}

	&:nth-child(8) {
		flex-grow: 1;
		background-image: url(../img/brandidentity/brandIdentity-08.webp);
		background-size: cover;
	}

	&:nth-child(9) {
		flex-grow: 1;
		background-image: url(../img/brandidentity/brandIdentity-12.webp);
		background-size: cover;
	}

	&:nth-child(10) {
		flex-grow: ;
		background-image: url(../img/brandidentity/brandIdentity-10.webp);
		background-size: cover;
	}

	&:nth-child(11) {
		flex-grow: ;
		background-image: url(../img/brandidentity/brandIdentity-11.webp);
		background-size: cover;
	}

	&:nth-child(12) {
		flex-grow: 1;
		background-image: url(../img/brandidentity/brandIdentity-09.webp);
		background-size: cover;
	}

	&:nth-child(13) {
		/* flex-grow: 1; */
		width: 100%;
		background-image: url(../img/brandidentity/BrandIdentity-13.webp);
		background-size: cover;
	}

	&:nth-child(14) {
		/* flex-grow: 1; */
		width: 100%;
		background-image: url(../img/brandidentity/BrandIdentity-14.webp);
		background-size: cover;
	}
}

@media screen and (max-width: 920px) {

	.section2 .content div {
		width: 100%;
		height: 45vh;

		&:nth-child(5) {
			flex-grow: ;
			background-image: url(../img/brandidentity/brandIdentity-05.webp);
			background-size: 150%;
		}
	}

}

@media screen and (max-width: 650px) {

	.section2 .content div {
		width: 100%;
		height: 30vh;
	}
	

	.skills {
		flex-direction: column;
		gap: .5em;
		text-align: center;
	}

}

