@charset "utf-8";

/*
   New Perspectives on HTML5 and CSS3, 8th Edition
   Tutorial 4
   Case Problem 1
   
   Save your Fork Graphic Design Styles
   Author: Amy Wu
   Date:   2021-03-01

   Filename: sf_effects.css

*/

/* Body Header Styles */

body {
   box-shadow: 10px 0px 150px rgb(211, 242,255),  -10px 0px 50px rgb(211, 242,255);
}

/* 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 {
   
   border-radius: 10px;
}


body > header nav.tabs li:hover {
   background-color: rgb(65, 105, 225);
}

/* Left Section Styles */

section#left nav.vertical {
   border: 1px solid rgb(65, 105, 225);
   border-radius: 10px;
}

section#left nav.vertical h1 {
   border-radius: 10px 10px 10px 10px;
}

/* Center Article Styles */

section#center article {
   background: radial-gradient(silver 10%, rgb(218, 177, 73));
   border: 1px solid rgb(151, 151, 151);
   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(5px 5px 10px rgb(51, 51, 51));
}

cite img {
   border-radius: 50%;
}
