/* 
Milestone Project style sheet
Filename: milestone-styles.css

Author: Andres Marzan
Date: 05/11/25
Project Milestone - IT240 Web Fluency
*/

/* reset styles */
html {
    font-size: 17px;
}
body, footer, header, h1, p {
    border: 0;
    padding: 0;
    margin: 0;
}

/* body and page container */
.container {
    max-width: 700px;
    margin: 0 auto;
    background-color: ivory;
    position: relative;
 }
 
 body {
    font-family:"Times New Roman", Times, serif;
    border-left: 1px solid red;
    border-right: 1px solid red;
    background-color: rgb(255, 255, 255);
    box-shadow: 0 10px 6px -6px #777;
 }

 /* header section */
header {
    width: 100%;
    max-width: 700px;
    position: relative;
    padding: 0;
    background-color: darkred;
 }
 h1 {
    padding: 0.5em;
    color: gold;
    text-align: center;
    font-weight: 600;
    font-size: 2.5em;
    font-family: Italianno, 'Times New Roman', Times, serif;
    text-shadow: 2px -1px 2px goldenrod;
 }
 header p {
    text-align: center;
    color: gold;
    padding: 0.5em;
    font-size: 1.5em;
    font-style: italic;
 }

 /* site navigation bar */
 nav.sitenavigation {
    background-color: black;
    text-align: center;
    font-style: italic;
 }
 nav.sitenavigation p {
    display: inline-block;
    margin: 0.4em 0.6em;
    font-size: 0.9em;
 }
 
 nav.sitenavigation a:link {
    color: goldenrod;
    text-decoration: none;
 }
 nav.sitenavigation a:visited {
    color: white;
}
nav.sitenavigation a:hover, nav.sitenavigation a:focus {
    color: yellow;
    text-shadow: 1px -1px 0 black;
}
nav.sitenavigation a:active {
    position: relative;
    top: 1px;
    left: 1px;
} 


/* footer section */
footer {
    padding: 0.6em;
    color: white;
    background-color: darkred;
    text-align: center;
    clear: right;
}
footer p {
    margin: 0.4em;

}
footer p.accent {
    color: gold;
    background-color: black;
    font-style: italic;
    font-weight: lighter;
}

 /* Social Media Buttons */
 .fa {
   padding: 5px;
   font-size: 30px;
   width: 50px;
   text-align: center;
   text-decoration: none;
   margin: 5px 2px;
 }
 
 .fa:hover {
     opacity: 0.7;
 }

 .fa-facebook {
    background: black;
    color: white;
  }

 .fa-linkedin {
   background: #007bb5;
   color: white;
 }

 .fa-instagram {
    background: goldenrod;
    color: white;
  }
  .fa-youtube {
    background: blue;
    color: white;
  }

 /* print styles */
@media print {
    .container, h1, h2, header p, p {
       color: black;
       background-color: white;
    }
    nav {
     display: none;
    }
 }
 @page {
    margin: 1in;
 }