#introduction p {
	text-align: justify;
	padding-right: 20px;

}

#introduction {
	display: flex;
	align-items: center;
	justify-content: space-around;
	margin-bottom: 10px;
}

#introduction img {
	display: block;
	margin: auto;
}

#introduction article {
	width: 40%;
}

#introduction h2 {
	margin-bottom: 10px;
}

#portfolio {
	margin: 30px auto;
	width: 77%
}

#portfolio h2 {
	text-align: center;
	margin-bottom: 20px;
}

/* slider */

.slider-arrows {
	margin-bottom: 10px;
}

.slider {
	overflow: hidden;
}

.slider-content {
	display: flex;
	gap: 3px;
	overflow: visible;
	transition: all 1.5s;
}

.slider .card {
	flex-shrink: 0;
}

.album {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.album img {
	object-fit: cover;
}

.slider-arrows {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 5%;
}

.slider-arrows img {
	cursor: pointer;
}

@keyframes pulsearrow {
	0% {
		transform: scale(1);
	}

	50% {
		transform: scale(0.8);
	}

	100% {
		transform: scale(1);
	}
}

#left,
#right {
	filter: drop-shadow(0 0 5px var(--logo-bg-color));
	animation: pulsearrow 3s infinite;
	transition: pulsearrow 0.3s ease, filter 0.3s ease;
}


@media (max-width: 767.98px) {


	#introduction {
		flex-direction: column;
		justify-content: center;
	}

	#introduction p {
		padding: 0;
	}

	#introduction article {
		width: 80%;
		display: flex;
		flex-direction: column;
		align-items: center;
	}

	#portfolio {
		margin: 0 auto 30px auto;
		width: 100%
	}


	#portfolio h2,
	#introduction h2 {
		font-size: 1.5rem;
	}

	.slider-content {
		flex-direction: column;
		gap: 20px;
	}

	.slider-arrows {
		visibility: hidden;

	}
}