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