@charset "utf-8";

/*
   New Perspectives on HTML5 and CSS3, 8th Edition
   Tutorial 4
   Case Problem 1
   
   Simple Recipes Graphic Design Styles
   Author: Nadia Fatima Ali
   Date:   October 17, 2025

   Filename: sf_effects.css

*/

/* Body Header Styles */

body {
   box-shadow: 10px 0px 50px rgb(51, 51, 51),  -10px 0px 50px rgb(51, 51, 51);
}

/* 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(153, 100, 79);
}

/* Left Section Styles */

section#left nav.vertical {
   border: 1px solid rgb(247, 221, 229);
   border-radius: 10px;
}

section#left nav.vertical h1 {
   border-radius: 10px 10px 0px 0px;
}

/* Center Article Styles */

section#center article {
   background: radial-gradient(white 30%, rgb(244, 228, 228));
   border: 1px solid rgb(215, 129, 129);
   border-radius: 10px;
   box-shadow: 10px 10px 20px rgb(51, 51, 51);
}

/* Blockquote Styles */

blockquote {
   background: url(sf_speech.png) no-repeat;
   background-size: 100% 100%;
    filter: drop-shadow(2px 2px 1px rgb(173, 142, 142));
}

cite img {
   border-radius: 50%;
}
