﻿@charset "utf-8";

/*
   New Perspectives on HTML5 and CSS3, 8th Edition
   Tutorial 3
   Coding Challenge 1

   Author: Jonnie Jucht
   Date:   10.06.2024
   
   Filename: code3-1_float.css

*/

/* body paragraph */

	p:first-of-type:first-letter {
		float: left;
		font-size: 4em;
		line-height: 0.8em;
		margin-right: 0.1em;
		padding-right: 0.1em;
		padding-bottom: 0.2em;
	}
	
	p:first-of-type:first-line {
		font-variant: small-caps;
		font-size: 1.4em;
	}
	
	
/* body paragraph */

/* image style */
	
	img {
		clear: both;
		height: 3.3em;
		float: right;
	}

/* image style */