/**
    Title: martin-portfolio.css
    Author: Angela Martin
    Date: 05/16/2021
    Description: Styling for Personal Portfolio.
*/

  
/** The styling for the body. */
body {
    font-family: 'Lemonada', Arial, Helvetica, sans-serif;
    margin: 0;
    background-color: #A3A3B1;
}

/** The styling for the footer. */
#footer {
    width: 100%;
    height: 50px;
    text-align: center;
    font-size: 10px;
    font-style: italic;
    margin: 0;
    color: black;
    padding: 0px 0 15px 0;
    bottom: auto;
    position: fixed;
}

/** The styling for the footer paragraph. */
#footer p {
    line-height: 2px;
}

/** The styling for the footer links. */
#footer a {
    text-decoration: none;
    color: black;
}

/** The styling for the footer links visited. */
#footer a:visited {
    color: black;
}

/** The styling for the footer links hovering. */
#footer a:hover {
    background-color: #D0BAE3;
}

/** The styling for the navbar. */
#nav-bar {    
    height: 30px;
    list-style-type: none;
    background-color: #A3A3B1;
}

/** The styling for the navbar list items. */
#nav-list li {
    float: right;
    margin: 10px;
    padding: 0;
    width: auto;
    display: block;
}

/** The styling for the navbar links. */
#nav-list li a {
    background-color: #A3A3B1;
    color: black;
    text-decoration: none;
    padding: 30px 50px 30px 10px;
    display: block;
}

/** The styling for the container class. */
.container {
    display: grid;
    width: 75%;
    height: 600px;  
    margin: 0;   
    border: 4px;
    border-color: #29293d;
    border-style: double;
    background-color: #8D8DA8;    
}

/** The styling for the item1 class. */
.item1 {
    grid-column: 1;
    grid-row: 1-2;    
    position: fixed;
}

/** The styling for the item2 class. */
.item2 {
    grid-column: 2;
    grid-row: row 1-2;
    background-color: #6D6D82;
    margin: 0 -12px 0 0;
}

/** The styling for the item3 class. */
.item3 {
    width: 300px;
    height: 400px;
    margin: 30px auto auto 20px;
    background-color: #6D6D82;
    color: black;    
    position: relative;
    z-index: 0;   
}

/** The styling for the item4 class. */
.item4 {
    width: 400px;
    height: 350px;
    margin: -220px -380px auto 215px;
    display: grid;
    background-color: #a3a3c2;
    justify-content: center;    
    position: absolute;    
    z-index: -1;
}

/** The styling for the item5 class. */
.item5 {
    width: 400px;
    height: 350px;
    grid-column: 2;
    background-color: lightcoral;
    margin: 208px auto auto 30px;
    position:fixed;
    z-index: 1;
}

/** The styling for the item6 class. */
.item6 {
    width: 300px;
    height: 400px;       
    background-color: #8D8DA8;
    margin: 30px auto auto 325px;
    position: fixed;
    z-index: 0;
}

/** The styling for the h2 heading. */
h2 {
    font-family: 'Lemonada', Arial, Helvetica, sans-serif;
    font-size: 18px;
}

/** The styling for the h3 and h4 heading. */
h3, h4 {
    text-align: center;
}

/** The styling for the h3 heading. */
h3 {
    font-family: 'Lemonada', Arial, Helvetica, sans-serif;
    font-size: 46px;
    font-weight: 600;
    color: black;
    padding-top: 30px;    
}

/** The styling for the h4 heading. */
h4 {
    font-family: 'Lemonada', Arial, Helvetica, sans-serif;
    font-size: 32px;
    font-weight: 500;
    color: black;   
}

/** The styling for the h5 heading. */
h5 {
    text-align: center;
    vertical-align: middle;
    padding-top: 40px;
    padding-left: 40px;    
}

/** The styling for the h6 heading. */
h6 {
    font-family: 'Lemonada', Arial, Helvetica, sans-serif;
    font-size: 32px;
    color: black; 
    text-align: center;
    writing-mode: vertical-lr;
    text-orientation: upright;
    margin: 30px 0 20px 0;
    font-weight: 700;
    line-height: 60px; 
}

/** The styling for the paragraph tag. */
p {
    font-family: 'Lemonada', Arial, Helvetica, sans-serif;
    font-size: 12px;
    color: black;
}

/** The styling for the icon tag. */
i {
    font-family: 'Lemonada', Arial, Helvetica, sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: black;
}

/** The styling for the list item marker. */
li {
    list-style-type: square;
}

/** The styling for the button. */
.button {
    width: 140px;
    height: 45px;    
    background-color: black;
    color: #A3A3B1;
    border: double #a3a3c2 3px;   
}

/** The styling for the about page container. */
.container2 {
    display: grid;
    grid-template: repeat(3, [row] minmax(120px, 1fr)) / repeat(4, [col] 1fr);
    gap: 5px;
    width: 85%;
    height: 600px;
    vertical-align: middle;
    background-color:white;
    margin: 100px 50px 30px 150px;
    border: 4px;
    border-color: #29293d;
    border-style: double;
    background-color: #7575a3;    
}

/** The styling for the about1 grid item. */
.about1 {
    grid-column: 1;
    grid-row: 1;
    background-color: #8D8DA8;
    padding: 25px;
    text-justify: left;
}

/** The styling for the about1 unordered list. */
.about1 ul {
    column-count: 2;
    column-gap: 20px;
}

/** The styling for the about2 grid item. */
.about2 {
    grid-column: 2;
    grid-row: 1;
    background-color: #A3A3C2;
    padding: 25px;
    text-justify: left;
    
}

/** The styling for the about2 unordered list. */
.about2 ul {
    column-count: 2;
    column-gap: 30px;
}

/** The styling for the about3 grid item. */
.about3 {
    grid-column: 3;
    grid-row: 1;
    background: url("../Images/cats.jpg") gray;
    background-size: cover;
    background-repeat: no-repeat;
}

/** The styling for the about4 grid item. */
.about4 {
    grid-column: 4;
    grid-row: 1 / 3;
    background-color: #A3A3C2;    
    padding: 25px;
    text-justify: left;
}

/** The styling for the about5 grid item. */
.about5 {
    grid-column: 2 / 4;
    grid-row: 2;
    background-color: #6D6D82;
    padding: 25px;
    text-justify: left;
}

/** The styling for the about5 unordered list. */
.about5 ul {
    column-count: 2;
    column-gap: 40px;
}

/** The styling for the about6 grid item. */
.about6 {
    grid-column: 2;
    grid-row: 3;
    background-color: #9494b8;
    padding: 25px;
    text-justify: left;
}

/** The styling for the about7 grid item. */
.about7 {
    grid-column: 3 / 5;
    grid-row: 3;
    background: url("../Images/about-music.jpg") thistle;
    background-size: cover;
    background-repeat: no-repeat;
    
}

/** The styling for the about8 grid item. */
.about8 {
    grid-column: 1;
    grid-row: 2 / 4;
    background: url("../Images/beach.jpg") turquoise;
    background-size: cover;
    background-repeat: no-repeat;
}



