
/* Start of about me section */
.about-content ul li {
    display: flex;
    align-items: center;
}
.about-content ul {
	list-style: none;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 6px;
	width: 100%;
}

.about-me {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	background-color: white;
	z-index: 1;
}
.about-content {
	width: 100%;
	font-size: 18px;
	line-height: 1.7;
	font-weight: 300;
	display: flex;
	flex-direction: column;
	gap: 20px;
	font-family: system-ui;
	align-items: center;
}
.about-content:first-child {
	margin-top: 80px;
}
.about-content:nth-of-type(even) {
    background-color: var(--lightaccent1-color);
}

.learn-more-btn {
    text-decoration: none;
	background-color: var(--current-tab-accent);
	padding: 16px;
	border-radius: 20px;
	font-size: 19px;
	color: black;
	width: fit-content;
	margin: 20px auto;
	display: flex;
	align-items: center;
	gap: 10px;
}


.personal-image-container {
	width: 320px;
	display: flex;
	justify-content: flex-end;
}
.personal-image-container img {
	width: 250px;
	height: 320px;
	max-width: 320px;
	object-fit: cover;
}
/* End of about me section */

.about-section {
	display: flex;
	flex-direction: column;
	gap: 10px;
	padding: 20px;
	border-radius: 25px;
    max-width: 1200px;
	align-items: center;
}
.about-section h2 {
	font-weight: 300;
	padding: 0;
	margin: 0;
	line-height: 1;
	margin-top: 10px;
	margin-bottom: 10px;
	width: 100%;
}
.about-section span {
	width: 100%;
}
.about-section.horizontal {
    gap: 40px;
    flex-direction: row;
}
.about-paragraph {
    display: flex;
	flex-direction: column;
	gap: 20px;
    margin: 0;
}

@media (max-width: 768px) {
	.about-content:first-child {
		margin-top: 0;
	}
    .about-section.horizontal {
	    flex-direction: column;
        gap: 20px;
    }
    .about-content {
        font-size: 17px;
    }
    .personal-image-container {
		justify-content: center;
    }
}