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