﻿@charset "utf-8";

/*
   New Perspectives on HTML5 and CSS3, 8th Edition
   Tutorial 2
   Coding Challenge 3

   Author: Aaron Spence
   Date:   09/22/2025
   
   Filename: code2-3.css

*/
html {
	padding-left:30px;
}
body {
	background-color: hsla(40, 80%, 75%, 0.5)
}
h1, h2 {
	font-family: Helvetica 
}
h1 {
	font-size: 3em;
	line-height: 1em;
	margin-bottom: 0;
}
h2 {
	margin-top: 0;
	font-style: italic;
	font-weight: normal;
}
img {
	margin: 0px 0px 10px 20px;
}
article {
	font-size: 1.4em;
	text-indent: 1em;
}
p::first-line {
  font-variant: small-caps;
}
	