:root{
	--accent-color: #ff4000;
	--secondary-color: #4a4d55;
	--secondary-text-color: #5b6270;
	--primary-color: #fcf6d4;
	--text-color: #11100e;
	--white: #fff;
	--text-link: #0040ff;
}
*{
	margin: 0;
	padding: 0;
}
html{
	font-family: "segoe UI";
	font-size: 14pt;
	color: var(--secondary-text-color);
	scroll-behavior: smooth;
}
body{
	min-height: 100vh;
	background-color: var(--primary-color);
}

/*HEADER*/
header{
	padding: 0 20px;
	display: flex;
	justify-content:center;
	flex-wrap: wrap-reverse;
}

header .container{
	width: 850px;
	max-width: 100%;
	margin-top: 50px;
	margin-right: 30px;
}

header img{
	height: 40vh;
}
header h1{
	margin-top: 50px;
	font-size: 3rem;
}
header h2{
	margin-top: 10px;
	margin-bottom: 10px;
	text-transform: uppercase;
	font-weight: 400;
	color: var(--text-color);
}
header p{
	color: var(--secondary-color);
}
header .read-more{
	display: inline-block;
	background-color: var(--accent-color);
	color: white;
	font-size: 1rem;
	font-weight: 600;
	text-decoration: none;
	border-radius: 50%;
	padding: .5em 1rem;
	margin-bottom: 30px;
	
	transition: 200ms ease;
	cursor: pointer;
}
header .read-more:hover{
	background-color: var(--secondary-color);
}

/*SKILL-SEKTION*/

#skill-section{
	padding: 80px 20px 100px 20px;
	background-color: var(--white);
}
#myVideo {
  position: fixed;
  right: 0;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
}
#skill-section h2{
	font-size: 2rem;
	text-align: center;
}
#skill-section h3{
	font-size: 1,75rem;
	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 var(--secondary-color);
	border-top: none;
}
.skill-container h3{
	background-color: var(--primary-color);
	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: var(--accent-color);
}

/*PROJEKT-SEKTION*/
#projects-section{
	padding: 50px 50px;
}
#project-section h2{
	font-size: 2rem;
	text-align: center;
	margin: 20px 30px ;
	color: var(--secondary-text-color);
	

}

/*DETAILS*/
details{
	margin: 20px  auto;
	width: 1000px;
	max-width: 100%;
	background-color: var(--white);
	border-radius: 6px;
}
details summary{
	display: flex;
	align-items: center;
	cursor: pointer;
	gap: 30px;
	padding: 30px;
}
details .number{
	background-color: var(--accent-color);
	min-height: 50px;
	min-width: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	font-size: 1,2rem;
	font-weight: 700;
	color: white;
}
details h3{
	font-size:1,75rem;
	}
details .text-container{
	padding: 30px;
	margin: 20px auto;
	display: flex;
}
details .text-container a{
	margin-top: 20px;
	margin-right: 30px;
	
}
details .project-link{
	display: inline-block;
	margin-top: 30px;
	background-color: var(--accent-color);
	color: white;
	padding: .75rem 1.5rem;
	border-radius: 2px;
	font-weight: 500;
	transition: 300ms ease;
	cursor: pointer;
}

details .read-more{
	display: inline-block;
	background-color: var(--accent-color);
	color: white;
	font-size: 1rem;
	font-weight: 600;
	text-decoration: none;
	border-radius: 50%;
	padding:  .5em 1rem;
	transition: 200ms ease;
	cursor: pointer;
	margin-bottom: 30px;
	
}
details .read-more:hover{
	background-color: var(--secondary-color);
}
 .grid-container{
	margin: 0 30 0 0;
	width: 1000px;
	max-width: 100%;
	display: grid;
	grid-template-columns: 1fr 1fr max-content;
	gap: 50px;
}

/*FOOTER*/
footer{
	background-color: var(--primary-color);
	padding: 20px 20px;
}
footer .grid-container{
	margin: 0 auto;
	width: 1000px;
	max-width: 100%;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 20px;
}
footer #at-symbol{
	font-size: 250pt;
}
footer img{
			width: 20vh;
}
footer h3{
	margin-top: 50px;
	font-size: 1.5rem;
}
footer a{
	margin-top: 5px;
	display: inline-block;
	color: var(--secondary-text-color);
	text-decoration: none;
}
footer a:hover{
	color: var(--text-link);
}

/*MEDIA QUWERY*/
@media(max-width: 1000px){
		header{
			padding: 30px 20px;
			text-align: center;
		}
		header h1{
			margin-top: 0;
			font-size: 10vw;
		}
		header h2{
			font-size: 1.3rem;
		}
		header img{
			display: none;			
		}
		.skill-container ul li{
			font-size: .9em;
			padding: 15px;
		}
	
		details .grid-container{
			display: flex;
			flex-direction: column;
			max-width: 90%;
			font-size: .9em;
			padding: 20px;
			font-weight: 600;
		}
			
		footer img{
			width: 20vh;
		}
		footer h3{
			margin-top: 30px;
		}
		footer .grid-container{
			display: flex;
			flex-direction: column;
			text-align: center;
			gap: 0;
		}
		
}
	
	
	
   
