﻿@charset "utf-8";

/*
   New Perspectives on HTML5 and CSS3, 8th Edition
   Tutorial 2
   Coding Challenge 4

   Author: Glenn Blazier
   Date:   9/22/25
   
   Filename: code2-4.css

*/

div {
   background-color: rgb(255 171 171);
   padding: 10px; /*padding-size does not exist, changed it to padding */
   font-size: 1.2em;
}

aside {
   background-color: rgb(209,227,107);
   padding: 0 20px;
}

aside h1 {
   font-size: 1.9em;
   font-family: Verdana, sans-serif; /*not real font, and font family and not just font*/
   line-height: 0.8em;
   margin: 20px 0 0 0;
}

aside h2 {
   margin-top: 5px;
   font-family: Verdana, sans-serif; /*not real font*/
   font-size: 1.2em; /*font size was missing the m in em*/
}

aside p {
   font-size: 1.1em;
   text-indent: 1em; /*misspelled indent*/
}

aside p:first of type {
   text-indent: 0em;
}