* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: "Arial", sans-serif;
}

body {
	line-height: 1.5;
}
/* header */
.sidebar {
	position: fixed;
	top: 0;
	right: 0;
	width: 250px;
	z-index: 999;
	background-color: white;
	display: none;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
	padding: 2rem;
}
.sidebar li {
	width: 100%;
}
.sidebar a {
	width: 100%;
	color: #000;
}

.sidebar a:hover {
	color: #e84613;
}
.menu-button {
	display: none;
}

nav img {
	height: 20vh;
}

nav {
	display: flex;
	justify-content: space-around;
	align-items: center;
	height: 30vh;
	background-color: #000;
}
nav ul {
	display: flex;
	gap: 2rem;
	list-style: none;
	font-size: 1.3rem;
	color: #e84613;
}
a {
	text-decoration: none;
	text-decoration-color: white;
	color: #e84613;
}
a:hover {
	color: white;
	text-decoration: underline;
	text-underline-offset: 1rem;
	text-decoration-color: gray;
}

/* body section */
#profile {
	background-color: rgb(255, 255, 255);
	background-position: center;
	background-size: cover;
	display: flex;
	justify-content: center;
	gap: 3rem;
	align-items: center;
	padding-top: 5rem;
	padding-bottom: 5rem;
}

.profile {
	width: 18rem;
}

.text-container {
	text-align: center;
}

.section-text_p1 {
	font-weight: 500px;
	font-size: 1.5rem;
}

.section-text_h1 {
	font-size: 2.5rem;
	color: #e84613;
	font-family: alata;
}

.section-text_p2 {
	font-weight: 500px;
	font-size: 1.5rem;
	margin-bottom: 0.7rem;
	inline-size: 25rem;
	line-height: 1.9rem;
}

/* buttons */

.btn_container {
	display: flex;
	justify-content: center;
	gap: 1rem;
}

.btn_color1,
.btn_color2 {
	background-color: #000;
	color: #e84613;
	padding: 0.6rem 0.8rem;
	border-radius: 18px;
	border: rgb(53, 53, 53) 0.1rem solid;
	font-size: 0.9rem;
	font-weight: 600;
	transition: all 300ms ease;
}

.btn_color1:hover,
.btn_color2:hover {
	background-color: #e84613;
	color: white;
	cursor: pointer;
}

.reference_container {
	display: flex;
	justify-content: center;
	margin-top: 1rem;
	gap: 1rem;
}

.linkedin-icon,
.git-icon {
	width: 2rem;
}

@media (max-width: 768px) {
	.projects-grid {
		grid-template-columns: 1fr;
	}

	.section-title h2 {
		font-size: 2rem;
	}
}

/*  footer section  */
footer {
	height: 26vh;
}

footer p {
	text-align: center;
	padding-top: 1rem;
	padding-bottom: 1rem;
}

.copyright {
	display: flex;
	justify-content: center;
	gap: 2rem;
	align-items: center;
}

.back-to-top a {
	color: #000;
	text-decoration: underline;
}
.back-to-top :hover {
	color: #e84613;
}
