/* Start of mobile style */
/* General Style */
body {
	font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.5;
	color: #282828;
    background-color: #ffffff;
	padding: 1rem;
	max-width: 18.75rem;
	margin: 2rem auto;
}

h1, h2, h3, h4, h5, h6 {
	font-family: Georgia, Times, "Times New Roman", serif;
	margin: .5em 0;
}

h1{
	text-align: center;
}

a{
	text-decoration: none;
}

a, a:visited { 
	color: #2b00ff;
}
/* this line does not work on desktop mode */
a:hover,
a:focus {
	color: #234723;
}

a:focus {
	outline: 1px dotted #0000ff;
}
/* this line does not work on desktop mode */
a:active {
	color: #ffa07a
}

/* Header Style */
.header ul {
	list-style: none;
	text-align: center;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 0.75rem;
}
/* Body Style */

.section-projects{
	max-width: 18.75rem;
	margin: 2rem auto;
	/* box-shadow: 0px 0px 3px 2px #eee; */
}

.all-projects h3{
	text-align: center;
}

.all-projects a{
	display: block;
	padding: 0.5rem 0.5rem;
	border: 3px solid #a9a9a9;
	border-radius: 10%;
	background-color: #d3d3d3;
	text-align: center;
	max-width: 18.75rem;
	margin: 2rem auto;
}
.all-projects img{
border-radius: 10%;
}

.footer p{
	text-align: center;
}
.footer ul{
	list-style: none;
	padding: 1rem;
	margin: 1rem;
	text-align: center;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	gap: 1rem;
}
/* End of mobile style */

/* Start of desktop style */
@media(min-width: 45em){

	body{
	max-width: 100%;
	margin: 2rem auto;
	background-color: #000000;
	color: #ffffff;
	
}
a,a:visited {
	color: #faebd7;
}

a:hover,
a:focus {
	color: #add8e6
}
a:active {
	color: #ffa07a
}

.header ul{
gap: 1rem;
}

.section-projects{
	display: flex;
	/* flex-wrap: wrap; */
	justify-content: center;
	column-gap: 2rem;

}

.all-projects a{
	border: 4px solid #a9a9a9;
	border-radius: 20%;
	background-color: #d3d3d375;
}


.footer ul{
	justify-content: space-between;
	gap: 3rem;
}
}
/* End of desktop style */