@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: 0px 0px 40px rgba(0,0,0,0.25);
}

/* Navigation Tabs List Styles */

body > header nav.tabs {
   background-color: #1e3932;
}

body > header nav.tabs li {
   transform: perspective(60px) rotateX(15deg);
}


body > header nav.tabs {
   background: #1e3932 url(sf_back1.png) no-repeat center center;
   background-size: cover;
}

/* Left Section Styles */

section#left nav.vertical {
   border: 2px solid #1e3932;
   border-radius: 20px;
}

section#left nav.vertical h1 {
   border-radius: 25px 25px 0px 0px;
}

/* Center Article Styles */

section#center article {
   background-color: #fff9f2;
   border: 2px solid #1e3932;
   border-radius: 25px;
   box-shadow: 0px 8px 20px rgba(0,0,0,0.15);
}

/* Blockquote Styles */

blockquote {
   background-color: #fff9f2;
   border-left: 5px solid #1e3932;
   padding: 15px;
   border-radius: 10px;
   box-shadow: 0px 5px 15px rgba(0,0,0,0.1);
   color: black;
}

cite img {
   border-radius: 50%;
}

section#center aside h1 {
   color: #1e3932;
}

section#center aside li {
   color: #1e3932;
}

blockquote p {
   color: black;
}

section#center aside h1 {
   color: #1e3932;
   font-weight: bold;
}
section#center aside ul li {
   color: #000000;
}
section#center aside {
   background-color: #f4efe9;
   padding: 15px;
   border-radius: 15px;
}