* {
	box-sizing: border-box;
}

body {
	background-color: #f9f7f2;
}

/*Header*/

header {
	background-color: #708b4c;
	position: sticky;
	top: 0;
	/*filter: drop-shadow(0px 1px 10px #59fa2e);*/
}

.sticky inner-column {
	display: flex;
	flex-direction: row;
	justify-content: flex-end;
}

header a {
	font-family: 'Mulish', sans-serif;
	font-size: 20px;
	font-weight: Medium 500;
	color: #f9f7f2;
	padding: 20px;
}

header a:hover {
	color: #59fa2e;
}

inner-column {
	display: block;
	max-width: 700px;
	width: 88%;
	margin-left: auto;
	margin-right: auto;
}

/*Typography*/

h1 {
	font-family: 'Space Grotesk';
	font-weight: 300;
	font-size: 50px;
	font-weight: Bold 700;
	padding-bottom: 25px;
	color: #708b4c;
}

h2 {
	font-family: 'Space Grotesk';
	font-weight: 300;
	font-size: 20px;
	font-weight: Medium 500;
	font-style: italic;
	color: #708b4c;
}

p {
	font-family: 'Space Grotesk';
	font-weight: 300;
	line-height: 1.5;
	font-size: 18px;
	color: #708b4c;
}

h2 + p {
	padding-top: 30px;
}

p + p {
	padding-top: 75px;
}


/*Main*/

.about {
	margin-top: 75px;
}
.about h2, p {
		max-width: 62ch;
}

/*Icon Gallery*/

.answer p {
	padding:  15px;
	color: #f9f7f2;
}

span {
	font-family: 'Mulish', sans-serif;
	font-size: 50px;
	font-weight: Bold 700;
	color: #f9f7f2;
	padding: 15px 15px 30px 15px;
}

.card-gallery {
	margin-top: 75px;
	align-content: center;
	margin-bottom: 75px;

}

icon-card {
	display: block;
	display: flex;
	flex-direction: column;
	justify-content: left;
	border: 2px solid black;
	background-color: #708b4c;
	
}

ul {
	display:  flex;
	flex-direction: column;
	align-items: center;
	flex-wrap: wrap;
	gap:  20px;
}


.img-scale {
	max-width: 200px;
	padding-top: 30px;
	padding-bottom: 15px;
	margin-right: 20px;
	margin-left: 20px;
}

details > summary {
  list-style: none;
}
details > summary::-webkit-details-marker {
  display: none;
}


summary {
	padding-bottom: 15px;
}

@media (min-width: 600px) {
	summary {
		padding-left: 7px;
	}
}

icon-card .img-scale {
	align-self: center;
}

@media (min-width: 600px){
	ul {
		display: grid;
	  grid-template-columns: repeat(2
	  	, minmax(100px, 1fr));
	  grid-gap: 1em;
	}

	icon-card {
		max-width: 215px;
		margin-bottom: 20px;
	}


	.img-scale {
		max-width: 200px;
		padding-top: 30px;
		padding-bottom: 15px;
		padding-right: 0px;
		padding-left: 0px;
	}
}

@media (min-width: 680px){

ul {
		display: grid;
	  grid-template-columns: repeat(3
	  	, minmax(100px, 1fr));
	  grid-gap: 1em;
	}
}

