h1, h2, h3 {
  color: #fff;
  font-family: "Amarante", serif;
}
body {
	font-family: "Roboto", sans-serif;
  font-weight: 200;
}
main {
	background-color: rebeccapurple;
  color: white;
  position: relative;
}
footer {
	background-color: black;
  color: white;
  padding: 5em;
  margin-top: 1em;
}

#mainHeading {
	font-style: italic;
  text-decoration: underline overline line-through;
}
#anch {
	border: 5px dashed #6d4d78;
  padding: 1em 2em 3em 4em;
  margin: 2em;
  /*
  	1 value - applies to all sides
  	2 values - first value is top/bottom, second value is left/right
  	3 values - first value is top, second is left/right, third is bottom
  	4 values - clockwise top, right, bottom, left
  */
}
#headingText {
	background-image: url("https://codecraftworks.dev/web/y0HqWwNpPP35Lm7eWdxM/assets/pixels.jpg");
  background-color:#6E5980;
  padding: 1.5em;
  border-radius: 0.5em;
  border: 2px solid red;
  background-size: cover;
  background-clip: content-box;
}
#positioning {
	position: sticky;
  top: 0;
  z-index: 1;
  /*
  	Top, left, bottom, right properites used alongside position property to move the element
  	Does not apply to "static" elements
  */
}
/*
	Position Absolute:
	<parent style="position:relative;">
		<child stlye="position:absolute;"></child>
	</parent>
	Child element will be moved in relation to its "relatively positioned" parent element
*/
#sec1 {
	width: 200px;
  border: 1px solid white;
  overflow: auto;
}
#flexContainer section {
	border: 2px solid white;
  width: 20%;
}
#flexContainer {
	display: flex;
  flex-direction: row;
	gap: 1em;
  flex-wrap: wrap;
  justify-content: space-evenly;
  align-items: stretch;
}

.blueHeading {
	color: blue;
}
.text-center {
	text-align: center;
}
.img-responsive {
	max-width: 100%;
}