/* CSS */
@import url('https://fonts.googleapis.com/css2?family=Annie+Use+Your+Telescope&family=Chakra+Petch:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&family=Covered+By+Your+Grace&family=Kalam:wght@300;400;700&family=Kaushan+Script&family=Loved+by+the+King&family=Merienda:wght@300..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Permanent+Marker&family=Rock+Salt&display=swap');

h1, h2, p
{
	padding-left: 10px;
	padding-right: 10px;
}

h1
{
	border-top: 3px solid maroon;
	border-right: 6px solid rgb(77, 0, 0); /* Color picker Red 15% */
	width: 400px;
	margin-top: 20px;
	margin-bottom: 5px;
	font-size: 40px;
}

h2
{
	font-size: 30px;
}

div.batman h2
{
  font-family: 'Annie Use Your Telescope', cursive;
  font-weight: 400;
  font-style: normal;
  border: 2px solid green;
}

div.wonder-woman h2
{
  font-family: 'Covered By Your Grace', cursive;
  font-weight: 400;
  font-style: normal;
  border-top: 2px solid purple;
}

div.superman h2
{
  font-family: 'Kalam', cursive;
  font-weight: 400;
  font-style: normal;
  border-top: 2px solid orange;
}

div.spiderman h2
{
  font-family: 'Kaushan Script', cursive;
  font-weight: 400;
  font-style: normal;
  border-top: 4px solid yellow;
  width: 500px;
}

div.iron-man h2
{
  font-family: 'Loved by the King', cursive;
  font-weight: 400;
  font-style: normal;
  border-top: 4px solid blue;
  width: 500px;
}

div.thor h2
{
  font-family: 'Rock Salt', cursive;
  font-weight: 400;
  font-style: normal;
  border-top: 4px solid red;
  width: 500px;
}

.superman p
{
	background-color: rgb(102, 0, 102);
	color:white;
	font-style: italic;
}

.thor p
{
	background-color: rgb(0, 0, 153);
	color:white;
	font-style: normal;
}
