@charset "utf-8";

/*
   New Perspectives on HTML5 and CSS3, 8th Edition
   Tutorial 4
   Case Problem 1
   
   Slice of Life Graphic Design Styles
   Author: Charlie McCormick
   Date:   3/11/26

   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 { /* This rounds the nav tabs (recipes, menus, holidays, etc) */
   border-top-left-radius: 40px;
   border-top-right-radius: 40px;
}

body > header nav.tabs li:hover { /* This sets the tabs' color to cheese orange on hover */
   background-color: hsl(35, 100%, 55%)
}

/* Left Section Styles */

section#left nav.vertical {
   border: 1px solid rgb(170, 20, 20);
   border-radius: 25px;
}

section#left nav.vertical h1 {
   border-radius: 25px 25px 0px 0px;
}

/* Center Article Styles */

section#center article {
   background: radial-gradient(rgb(204, 204, 204) 30%, rgb(244, 174, 32));
   border: 1px solid rgb(203, 0, 0);
   border-radius: 50px;
   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(5px 5px 10px rgb(51, 51, 51));
}

cite img {
   border-radius: 50%;
}
