﻿@charset "utf-8";
@font-face {
   font-family : Quicksand;
   src: url(Quicksand-Regular.woff) format('woff'), url(Quicksand-Regular.ttf) format('truetype');
}
/*
      New Perspectives on HTML5 and CSS3, 7th Edition
      Tutorial 2
      Case Problem 2
   
      Bike the Mountains Tour Style Sheet
      Author: Niklas Kennedy
      Date:  1/20/2021
   
      Filename: mw_styles.css

*/
html {
   background-color: rgb(173, 189, 227);
}

body
{
   background-color: rgb(227, 210, 173);
   font-family: 'Century Gothic' , sans-serif;
}


body > footer 
{
   background-color: rgb(208, 184, 109);
   padding-top: 5px;
   padding-bottom: 5px;
}

address
{
   font-size: 0.9em;
   font-family: sans-serif;
   text-align: center;
   padding-top: 10px;
   padding-bottom: 10px;
}

/* Structural Styles */




h1,
h2
{
   font-weight: normal;
}

body > nav > ul {
    list-style-type: none;
    line-height: 2em;
    font-size: 0.9em;
}
/* Heading Styles */



nav > ul
{
   list-style: none;
   line-height: 2em;
   font-size: 0.9em;
}



body > nav a:link, body > nav a:visited {
    text-decoration: none;
    color: rgb(43, 59, 125);
}

body > nav a:hover, body > nav a:active {
    color: rgb(212, 35, 35);
}
/* Navigation Styles */



article#tour_summary h1{
    font-size: 2.2em;
    letter-spacing: 0.2em;
}

article#tour_summary p {
    font-size: 1.1em;
}

article#tour_summary p:first-of-type::first-line{
    font-size: 1.2em;
    font-variant: small-caps;
}

aside > p:nth-of-type(odd),h2:nth-of-type(odd) {
   color: rgb(79, 91, 40);

}

aside > p:nth-of-type(even),h2:nth-of-type(even) {
   color: rgb(81, 95, 175);
}
/* Article Styles */


/* Aside Styles */
#tour_itinerary h1 {
   font-size: 1.2em;
}

#tour_itinerary h2 {
   font-size: 0.9em;
   font-weight: normal;
}

#tour_itinerary p {
   font-size: 0.9em;
}
/* Aside Styles */



blockquote {
   background-color: rgba(173, 189, 227,0.65);
   color: rgb(255, 255, 255);
}

blockquote p {
   padding-top: 2.5px;
   padding-bottom: 2.5px;

   padding-left: 10px;
   padding-right: 10px;
}
/* Blockquote Styles */