@charset "utf-8";

/*
   New Perspectives on HTML5 and CSS3, 8th Edition
   Tutorial 4
   Case Problem 1
   
   Save your Fork Graphic Design Styles
   Author: Dennis Kane
   Date: 10/19/2025

   Filename: sf_effects.css

*/

/* Body Header Styles */

body {
   box-shadow: 10px 0px 50px rgb(66, 40, 24), -10px 0px 50px rgb(66, 40, 24);
}

/* Navigation Tabs List Styles */

body > header nav.tabs {
   background: url(sf_back1.png) no-repeat;
   background-position: center center;
   background-size: cover;
}

body > header nav.tabs li {
   transform: perspective(50px) rotateX(20deg);
}


body > header nav.tabs li:hover {
   background-color: rgb(255, 247, 240);
}

/* Left Section Styles */

section#left nav.vertical {
   border: 1px solid rgb(180, 110, 45);
   border-radius: 25px;
}

section#left nav.vertical h1 {
   border-radius: 25px 25px 0px 0px;
   background-color: rgb(180, 110, 45);
   color: rgb(255, 253, 248);
}

/* Center Article Styles */

section#center article {
   background: radial-gradient(rgb(255, 253, 248) 30%, rgb(240, 205, 165));
   border: 1px solid rgb(240, 205, 165);
   border-radius: 50px;
   box-shadow: 10px 10px 20px rgb(66, 40, 24);
}

/* Blockquote Styles */

blockquote {
   background: url(sf_speech.png) no-repeat;
   background-size: 100% 100%;
   filter: drop-shadow(5px 5px 10px rgb(66, 40, 24));
}

cite img {
   border-radius: 50%;
}
