﻿@charset "utf-8";

/*
   New Perspectives on HTML5 and CSS3, 8th Edition
   Tutorial 4
   Coding Challenge 1

   Author: Aaron Spence
   Date:   10/11/2025
   
   Filename: code4-1_back.css

*/
/* figure styles */

figure {
	padding: 20px;
	border-style: ridge;
	border-width: 20px;
	border-color: rgb(52, 52, 180);
}

figure {
	background: url(ws.png) bottom right / 45% no-repeat,
	rgba(52, 52, 180, 0.3);
}

figcaption {
	font-size:1.8em;
	text-align: center;
	border-bottom: solid 2px rgb(52,52, 180);
}