@charset "UTF-8";
/* CSS Document */
root{
	--accent-color:#d52c3a;
	--primary-color:#1B1C1F;
	--secondary-color:#101113;
	--text-color:#d9d9d9;
	--secondary-text-color:#7f8082;
}
*{
	margin: 0;
	padding: 0;
}
html{
	font-family: Segoe, 'Segoe UI', 'DejaVu Sans', 'Trebuchet MS', Verdana, 'sans-serif';
	font-size: 14pt;
	color: #d9d9d9;
}
body {
	min-height: 100vh;
	backround-color: #1B1;
}

body {
	min-height: 100vh;	
  	background-color: #1B1C1F;
}

header{
	padding: 0 20px;
	display: flex;
	justify-content: center;
	flex-wrap: wrap-reverse;
}

header .container{
	width: 800px;
	max-width: 100%;
}

header img{
	height: 70vh;
}

header h1{
	margin-top: 200px;
	font-size: 4rem;
}
header h2{
	margin-top: 20px;
	margin-bottom: 20px;
	text-transform: uppercase;
	font-weight: 300;
}
header p{
	color: #7f8082
}

header .read-more{
	display: inline-block;
	background-color: #D52C3A;
	color: white;
	font-size: 1,25rem;
	font-weight: 500;
	border-radius: 1000px;
	paddding: .5em 1.25em;
	text-decoration: none;
	
	transition: 200ms ease;
	cursor: pointer;
}

header .read-more:hover{
	background-color: #101113
}

#skill-section{
	paddding: 80px 20px 150px 20px;
	background-color: #101113;
}

#skill-section h2{
	font-size: 3rem;
	text-align: center;
}

#skill-section .wrapper{
	margin-top: 60px;
	display: flex;
	justify-content: center;
	gap: 50px;
	flex-wrap: wrap;
}

.skill-container{
	width: 400px;
	max-width: 100%;
	border: 10px solid #1B1C1F;;
	border-top: none;
}

.skill-container h3{
	background-color: #1B1C1F;
	padding: 15px 0;
	text-align: center;
	text-transform: uppercase;
}

.skill-container ul{
	margin: 10px 0;
	list-style: none;
}

.skill-container ul li{
	padding: 15px;
	display: flex;
	justify-content: space-between;
}

.skill-container ul li progress{
	accent-color: #d52c3a;
}

#projects-section{
	padding: 100px 20px;
}

#projects-section h2{
	font-size: 3rem;
	text-align: center;
	margin-bottom: 60px; 
}

details{
	margin: 20px auto;
	width: 1000px;
	max-width: 100%;
	background-color: #101113;
	border-radius: 6px;
}

details summery{
	display: flex;
	align-items: center;
	cursor: pointer;
	gap: 30px;
	padding: 30px;
}

details .number{
	background-color: #d52c3a;
	min-height: 50px;
	min-width: 50px; 
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	font-size: 1.2rem;
	font-weight: 700;
}

details h3{
	font-size: 1.75rem;
}

details .text-container{
	padding: 30px;
	Padding-top: 0;
}

details .project-link{
	display: inline-block;
	margin-top: 30%;
	background-color: #d52c3a;
	color: #FBFBFB;
	padding: .75rem 1.5rem;
	border-radius: 2px;
	font-weight: 500;
	transition: 300ms ease;
	cursor: pointer;
}

details .project-link:hover{
	background-color: #1B1C1F;
}



