﻿@charset "utf-8";
/*charset should be on line 1*/
/*
   New Perspectives on HTML5 and CSS3, 8th Edition
   Tutorial 2
   Coding Challenge 4

   Author: Olivia Mosiniak
   Date: 09/20/2025
   
   Filename: code2-4.css

*/
div {
   background-color: rgb(255,171,171);
   padding: 10px;
   font-size: 1.2em;
}
/*padding-size should be padding*/

aside {
   background-color: rgb(209,227,107);
   padding: 0 20px;
}

/*font should be font-family(line 35)*/
aside h1 {
   font-size: 1.9em;
   font-family: Segoe, Verdana, sans-serif;
   line-height: 0.8em;
   margin: 20px 0 0 0;
}

aside h2 {
   margin-top: 5px;
   font-family: Segoe, Verdana, sans-serif;
   font-size: 1.2em;
}
/*1.2e should be 1.2em*/

aside p {
   font-size: 1.1em;
   text-indent: 1em;
}
/*text-indent was mispelled as text-ident*/

/*first of type should be first-of-type*/
aside p:first-of-type {
   text-indent: 0em;
}