* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}

body {
	background: #000;
	color: #fff;
	font-family: 'Changa';
	font-size: 1.15rem;
}

.hero {
	position: relative;
	height: 100vh;
	overflow: hidden;
}

.hero-img {
	position: absolute;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.2s ease-out;
	mask-image: linear-gradient(to bottom, black 0%, transparent 100%);
  	-webkit-mask-image: linear-gradient(to bottom, black 0%, transparent 100%);
}

.overlay {
	position: absolute;
	width: 100%;
	height: 100%;
	background: black;
	opacity: 0;
	transition: opacity 0.2s ease-out;
}

.name-wrapper {
	position: absolute;
	bottom: 15%;
	width: 100%;
	text-align: center;
	align-items: center;
	inset: 0;
}

#big-name {
	position: absolute;
	opacity: 75%;
	display: inline-block;
	transform: translateX(-50%);
	font-size: 5vw;
	font-weight: 100;
	white-space: nowrap;
	background: linear-gradient(90deg, white 0%, white 100%);
	background-repeat: no-repeat;
	background-size: 0% 100%;
	background-clip: text;
	-webkit-background-clip: text;
	color: transparent;
	font-family: 'WindSong'; /*Alex Brush*/
	animation: write 5s ease both;
}

@keyframes write {
	from { background-size: 0% 100%; }
	to { background-size: 100% 100%; }
}

.content {
	padding: 5rem 2rem;
	background: #000;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 2rem;
}

.tab {
	width: fit-content;
	border-bottom: 1px solid #555;
	font-size: 1.25rem;
	transition: 0.3s;
	text-align: center;
}

.tab:hover {
	cursor: pointer;
	transform: scale(1.2);
	transition: 0.3s;
}

.tab.active {
	background-color: #3333;
	transition: 0.3s;
}

.tab-content {
	text-align: center;
	display: none;
	min-height: 100vh;
	transition: 0.3s;
}

.tab-content.active {
	display: block;
	transition: 0.3s;
}

.icon {
	stroke: #dadada;
	margin: 10% 1%;
}

#linkedin {
  fill: #dadada;
}


#projects.tab-content.active {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.left_text {
	text-align: left;
	border: 2px solid #dadada;
	padding: 5px 10px;
	width: 100%;
	height: min-content;
	border-radius: 10px;
	margin-bottom: 3rem;
	transition-duration: .3s;
	box-shadow: -5px 5px 20px #dadada;
	text-shadow: 0 0 10px #dadada;
}

.right_text {
	text-align: right;
	border: 2px solid #dadada;
	padding: 5px 10px;
	width: 95%;
	height: min-content;
	border-radius: 10px;
	margin-bottom: 3rem;
	transition-duration: .3s;
	box-shadow: 5px 5px 20px #dadada;
	text-shadow: 1px 1px 10px #dadada;
}

.right_text:hover, .left_text:hover {
	border: 2px solid #9fbdc1;
}

.right_text:hover {
	box-shadow: 5px 5px 20px #9fbdc1;
}


.left_text:hover {
	box-shadow: -5px 5px 20px #9fbdc1;
}

a {
	color: #9fbdc1;
}

#tab-btn {
	position: absolute;
	bottom: 10%;
	left: 50%;
	transform: translateX(-50%);
	padding: 10px 20px;
	font-size: 2rem;
	border: none;
	background: linear-gradient(to bottom, #333 0%, transparent 100%);
	border-bottom: 2px solid #dadada;
	border-radius: 10px;
	color: #dadada;
	font-family: 'Changa';
	font-weight: bolder;
	cursor: pointer;
	transition: .2s;
}

#tab-btn:hover {
	border-bottom: 2px solid #9fbdc1;
	color: #9fbdc1
}

#about {
	text-align: center;
}

#about ul {
	display: inline-block;
	text-align: left;
	margin: 1rem auto;
	list-style: disc;
	padding-left: 1.5rem;
}

#about ul ul {
	display: block;
	list-style: circle;
	padding-left: 1.5rem;
	margin-top: 0.5rem;
}

#projects img {
	display: block;
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
	margin: 1rem 0;
}

#projects section {
	margin-bottom: 3vh;
}

#projects section section {
	border: 2px solid #dadada;
	border-radius: 10px;
	width: 50vw;
	box-shadow: -5px 5px 20px #dadada;
	text-shadow: -1px 1px 10px #dadada;
	transition: .3s;
}

#projects section section:hover {
	border: 2px solid #9fbdc1;
	box-shadow: -5px 5px 20px #9fbdc1;
}

#achievements.tab-content.active {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

#achievements section {
	margin-bottom: 3vh;
	border: 2px solid #dadada;
	border-radius: 10px;
	width: 50vw;
	box-shadow: -5px 5px 20px #dadada;
	text-shadow: -1px 1px 10px #dadada;
	transition: .3s;
}

#achievements img {
	display: block;
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
	margin: 1rem 0;
	filter: brightness(75%);
}