* {
	margin: 0;
	padding: 0;
}

body {
	font-size: 1.2rem;
	font-family: "Nunito", sans-serif;
	font-optical-sizing: auto;
	font-style: normal;
	font-weight: 300px;
	color: white;
	line-height: 1.5;
	background-color: #035642;
}

.container {
	box-shadow: 10px 10px 12px rgba(0, 0, 0, 0.6);
	background-color: #04151F;
	display: flex;
	padding: 40px;
	margin: 20px;
	border-radius: 25px;
}

.profile {
	justify-content: space-between;
	align-items: center;
	gap: 100px;
	padding: 100px;
}

.gold {
	color: #EFD6AC;
}

.red {
	color: #C44900;
}

.white {
	color: white;
}

.profile-text p {
	font-weight: 400;
	color: #EFD6AC;
	line-height: 3;
}

ul {
	display: flex;
	list-style: none;
	margin-top: 20px;
	gap: 1rem;
	flex: 1;
}

svg {
	stroke: white;
	transition: stroke 0.15s ease-out;
}

svg:hover {
	stroke: #EFD6AC;
}

.profile-photo {
	border: 10px solid white;
	border-radius: 50%;
	overflow: hidden;
	width: 30rem;
	height: 30rem;
	flex: none;
}

.projects,
.skills {
	height: 20rem;
}

.footer {
	align-items: center;
	flex-direction: column;
	padding: 10px;
}	

.copy {
	font-size: 1rem;
}