@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");

body {
	font-family: 'Onest', 'Segoe UI', sans-serif;
	margin: 0;
	background: linear-gradient(0.5turn,#02112b, #000) no-repeat #000;
	color: white;
}

.container {
	display: flex;
	flex-direction: column;
	align-items: center;
	align-content: center;
	margin: 0 auto;
	max-width: 40rem;
	text-align: center;
}

.profileimg{
	border-radius: 90%;
	width: auto;
	transition: 0.5s;
}

.profileimg:hover {
	transform: scale(1.2);
}

.nav-links {
	display: flex;
	justify-content: center;
	text-decoration: none !important;
	
}

#navbar {
	padding-top: 1.5rem;
	padding-bottom: 1.5rem;
	position: relative;
}

.nav-li {
	color: white;
	text-decoration: none;
	font-weight: 500;
	transition: all 0.3s ease-in-out;
	padding: 0.75rem;
	border-radius: 5px;
}
.nav-li:hover {
	font-weight: bolder;
	background-color: rgb(3, 98, 143);
	color: rgb(0, 195, 255);
}

.purple {
	color: rgb(151, 115, 192);
	font-weight: bold;
}

.yellow {
	color: rgb(204, 204, 154);
	font-weight: bold;
}

#proyectos {
	display: flex;
	flex-direction: column;
	gap: 1.75rem;
}

.proyect {
	display: flex;
	flex-direction: column !important;
	align-items: center;
	gap: 0.75em;
	justify-content: center;
}

.proyect img {
	border-radius: 0.25rem;
	width: 70%;
	transition: 0.5s;
}

.proyect img:hover {
	transform: scale(1.05);
}

.button {
	text-decoration: none;
	color: inherit;
	border-radius: 5px;
	background-color: rgb(66, 62, 62);
	padding: 0.50rem;
	padding-left: 0.75rem;
	padding-right: 0.75rem;
	transition: all 0.5s ease;
}

.button:hover {
	background-color: rgb(100, 98, 98);
	text-size-adjust: 1rem !important;
}

footer {
	padding-top: 0.75rem;
	padding-bottom: 0.75rem;
	display: flex !important;
	justify-content: center !important;
	gap: 25%;
	color: gray;
}
footer section a {
	text-decoration: none !important;
	color: gray;
	transition: 0.1s;
}
footer section a:hover {
	color: rgb(163, 163, 163) !important;
}

@media (min-width: 768px) {
	.proyect {
		flex-direction: row-reverse !important;
	}
	.proyect img {
		width: 23rem !important;
	}
}