﻿@charset "utf-8";

/*
   New Perspectives on HTML5 and CSS3, 8th Edition
   Tutorial 3
   Coding Challenge 1

   Author: Kaden Smart
   Date: 9-29-2025  
   
   Filename: code3-1_float.css

*/

p:first-of-type:first-letter {
	float: left;
	font-size: 1em;
	line-height: 0.8em;
	margin-right: .1em;
	padding: .1em;
	padding-bottom: .2em;
}

p:first-of-type:first-line {
	font-variant: small-caps;
	font-size: 1.4em;
}

img {
	height: 3.3em;
	float: right;
	clear: right;
}	