@charset "utf-8";

/*
Author: Allyson Meza Dacosta
Date:   04/21/26  

*/


/* HTML and Body styles */

html {
   background: linear-gradient(to top left, rgb(207, 169, 199), rgb(55, 32, 52));
   font-family: Verdana, Geneva, sans-serif;
}

body {
   display: -webkit-flex;
   display: flex;
   -webkit-flex-flow: column nowrap;
   flex-flow: column nowrap;    
   margin: 0 auto;
   min-width: 320px;
   max-width: 1100px;  
   padding: 10px;
   justify-content: center;
}

/* Header styles */

body > header {
   border-bottom: 10px solid #7fa0d4;
   border-top: 10px solid #7fa0d4;
   color: rgb(35, 35, 35);
   display: -webkit-flex;
   display: flex;
   -webkit-flex-flow: row nowrap;
   flex-flow: row nowrap; 
   justify-content: center;
   margin-bottom: 30px;
   width: 100%;
}

body > header > img {
   display: block;
   -webkit-flex: 0 1 200px;
   flex: 0 1 200px;
}


/* Navigation list styles */
body > header > nav > ul {
   display: -webkit-flex;
   display: flex;
   -webkit-flex-flow: row nowrap;
   flex-flow: row nowrap;
   -webkit-justify-content: flex-end;
   justify-content: flex-end;
}

body > header > nav > ul li {
   -webkit-flex: 0 1 auto;
   flex: 0 1 auto;
   list-style-type: none;
   margin: 0;
   padding: 0;
}

body > header > nav > ul > li {
   font-size: 1.2em; 
   line-height: 2.3em; 
   height: 2.3em;
   margin: 0;
   padding: 0 10px;
}

body > header > nav > ul > li > a {
   color: #f8f4ea;
   display: block;
   width: 100%;
   margin: 0;
   padding: 0;
   font-size: 1.5rem;
   font-weight: 600;
   justify-content: space-between;
   text-decoration: none;
}


/* Section Styles */

body > section {
   -webkit-flex: 1 1 400px;
   flex: 1 1 400px;
   display: -webkit-flex;
   display: flex;
   -webkit-flex-flow: column nowrap;
   flex-flow: column nowrap;
   -webkit-align-content: flex-start;
   align-content:flex-start;
   max-width: fit-content;
   margin: 0;
}

body > section > h2 {
   color: rgba(51, 51, 51, 0.9);   
   font-size: 2.9em;
   text-align: center;
   line-height: 1em;
}

body > section > p {
   color: rgb(51, 51, 51);
   font-size: 1.2em;
   margin: 30px 30px 30px 30px;
   text-align: justify;
   align-content: center;
}

/* Article Styles */



/* Table Styles */



/* Right-side Navigation List Styles */

body > nav {
   border-left: 1px solid rgba(255, 255, 255, 0.4);   
   -webkit-flex: 0 0 241px;
   flex: 0 0 241px;
   padding-left: 20px;
   padding-bottom: 15px;
}

body > nav > img {
   display: block;
   width: 100%;
   margin: 0 auto;
   border-radius: 50%;
   -webkit-filter: drop-shadow(5px 5px 10px black);
   filter: drop-shadow(5px 5px 10px black);
}

body > nav li.lTitle {
   font-size: 1.1em;
   color: rgba(51, 51, 51, 0.8);
   margin: 15px 0 10px 0;
}

body > nav a {
   display: block;
   margin-left: 10px;
   color: rgba(255, 255, 255, 0.7);
}

body > nav a:hover {
   color: rgb(65, 41, 69);
   text-decoration: underline;
}


/* Aside Styles */

body > section > aside:first-of-type {
   -webkit-flex: 1 1 265px;
   flex: 1 1 265px;
   text-align: center;
   align-content: center;
}

body > section > aside:last-of-type {
   -webkit-flex: 1px 1px 325px;
   flex: 1px 1px 325px;
   text-align: center;
   align-content: center;
}

body > section > aside {
   color: rgb(81, 81, 81);   
   margin: 25px 25px 25px 25px;
   background-color: #95cfce;
   box-shadow: inset 15px 15px 25px #7ac2c1,
               inset -15px -15px 25px #448d8c;
   padding: 20px;
}



body > section > aside > p {
   margin: 15px 0 20px;
   text-align: center;
   align-content: center;
}


/* Footer Styles */

footer {
   border-top: 1px solid rgba(255, 255, 255, 0.4);
   clear: left;
   text-align: right;
   margin: 0 auto;
   width: 100%;   
   box-sizing: border-box;
}

footer, footer span a {
   padding: 10px;
   color: rgba(51, 51, 51, 0.7);
}

footer span a:hover {
   color: rgb(157, 194, 194);
   text-decoration: underline;
}


/* ===============================
   Mobile Styles: 0px to 640px 
   ===============================
*/
@media only screen and (max-width: 640px) {

   body > header nav ul {
      -webkit-justify-content: center;
      justify-content: center;
   }  
   
   body > header > img {
      margin: 0 auto;
   }
   
   article h1 {
      font-size: 2.4em;
   }
   
   body > nav {
      -webkit-flex: 1 1 640px;
      flex: 1 1 640px;
      border-left: none;
   -moz-column-width: 200px;
   -webkit-column-width: 200px;
    column-width: 200px; 
    margin-bottom: 25px;     
   }
   
   body > nav > img {
      display: none;
   }

   body > header > nav > ul > li {
      font-size: 1em; 
      line-height: 1.4em; 
      height: 1.4 em;
      padding: 0 10px;
   }
}

/* =============================================
   Tablet and Desktop Styles: greater than 640px
   =============================================
*/
@media only screen and (min-width: 641px) {


}

