@import url("https://fonts.googleapis.com/css2?family=PT+Serif&family=Poppins:wght@200&display=swap");

::-webkit-scrollbar {
	width: 9px;
}

::-webkit-scrollbar-track {
	background-color: #141414;
}

::-webkit-scrollbar-thumb {
	background-color: #302f2f;
	border-radius: 12px;
}

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

body {
    width: 100vw;
	background-color: #121212;
	background-color: #ca00e97a;

	color: #ffffff;
	font-family: Arial, sans-serif;
	text-align: center;
}

h1 {
	padding: 20px;
	font-size: 36px;
	font-family: "PT Serif", serif;
}

.container {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	max-width: 1200px;
	margin: 0 auto;
	padding: 20px;
}

.profile {
	/* background: linear-gradient(); */
	background-color: #00dbde;
	background-image: linear-gradient(90deg, #00dbde 0%, #fc00ff 100%);

	border-radius: 10px;
	padding: 20px;
	margin: 20px;
	width: calc(33.33% - 40px);
	text-align: center;
	transition: background-color 0.3s ease;
}

.profile:hover {
	background-color: #333333;
}

.pfp img {
	width: 100px;
	height: 100px;
	border-radius: 50%;
	margin-bottom: 10px;
}

.name {
	font-family: "Poppins", sans-serif;
	font-size: 20px;
	margin-bottom: 10px;
}

.skills {
	margin-bottom: 10px;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	row-gap: 7px;
}

.skill {
	background-color: #444;
	padding: 5px 10px;
	border-radius: 5px;
	margin: 0 5px 10px 0;
	font-size: 14px;
	display: inline-block;
}
.project {
	margin: 13px;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	/* background-color: #444; */
	padding: 5px 10px;
	border-radius: 5px;
	margin: 0 5px 10px 0;
	font-size: 14px;
	display: inline-block;
}

.project {
	display: flex;
	justify-content: space-between;
	padding: 5px 10px;
	/* border-radius: 5px; */
	font-size: 35px;
}
.project a{
	color: #1a21f1;
	margin: 0 10px;
	font-size: 24px;
	text-decoration: none;
	transition: color 0.3s, font-size 0.3s;
}

.project a:hover{
	color: #000000;
	font-size: 28px;
}
.projectNam{
	margin: 13px;
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	padding: 5px 10px;
	border-radius: 5px;
	margin: 0 5px 10px 0;
	font-size: 16px;
	

}
.social {
	margin-top: 13px;
	display: flex;
	flex-direction: row;
	justify-content: center;
	
}

.social a {
	color: #ffffff;
	margin: 0 10px;
	font-size: 24px;
	text-decoration: none;
}

.social a {
	color: #ffffff;
	margin: 0 10px;
	font-size: 24px;
	text-decoration: none;
	transition: color 0.3s, font-size 0.3s;
}

.social a:hover {
	color: #000000;
	font-size: 28px;
}

@media screen and (max-width: 768px) {
	.container {
		justify-content: center;
	}

	.profile {
		width: 100%;
	}
}

button {
	color: #fff;
	padding: 10px 20px;
	background-color: #2b3031;
	border: none;
	cursor: pointer;
	font-family: "Poppins", sans-serif;
	font-size: 1.1em;
	border-radius: 5%;
}
.add{
	background-color: #21263d;
}
.search {
	text-align: center;
	margin-bottom: 20px;
}

#searchInput {
	width: 80%;
	padding: 10px;
	border: none;
	border-radius: 5px;
	background-color: #121212;
	background-color: cadetblue;
	color: #000000;
	font-size: 16px;
	box-shadow: 0px 0px 5px rgba(255, 255, 255, 0.2);
}

#searchInput::placeholder {
	color: #2c2525;
}

#searchInput:focus {
	outline: none;
	box-shadow: 0px 0px 5px rgba(255, 255, 255, 0.5);
}
