﻿@charset "utf-8";

/*
	New Perspectives on HTML5 and CSS3, 8th Edition
	Tutorial 2
	Coding Challenge 3

	Assignment: Coding Challenge 3
	Author: Chris LaFleur
	Date: 9/14/23
*/



/* HTML Styles */

html{
	padding-left: 30px;
	background-color: hsla(40, 80%, 75%, 0.5);
}



/* Heading Styles */

h1, h2{
	font-family: Helvetica, Arial, sans-serif;
}

h1{
	font-size: 3em;
	line-height: 1em;
	margin-bottom: 0;
}

h2{
	margin-top: 0;
	font-style: italic;
	font-weight: normal;
}



/* Inline Image Styles */

img{
	margin-top: 0;
	margin-right:0;
	margin-bottom: 10px;
	margin-left: 20px;
}



/* Paragraph Styles */

p{
	font-size: 1.4em;
	text-indent: 1em;
}

p:first-of-type{
	text-indent: 0;
}

p:first-of-type::first-line{
	font-variant: small-caps;
}
