/* Last Updated Sept 21 2023 -8:34 */


/* <!-- ######################################### -->
<!-- ############### MainPage ################# -->
<!-- ######################################### --> */

/* hero css */
h2#hero-h2 {
    /* color: rgb(0, 0, 0); */
    font-family: 'M PLUS Rounded 1c', sans-serif;
    font-size: 2em;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 5px;
    text-align: center;
}

h3#hero-h3 {
    font-family: 'M PLUS Rounded 1c', sans-serif;
    font-size: 1.5em;
    font-weight: 700;
    margin-bottom: 7px;
    text-align: center;
}

p.hero {
    font-family: 'M PLUS Rounded 1c', sans-serif;
    font-size: 1em;
    font-weight: 500;
    line-height: 20px;
    margin-bottom: 7px;
    text-align: center;
}

p.hero a {
    color: rgb(79, 66, 255);
    font-family: 'M PLUS Rounded 1c', sans-serif;
    font-size: 1em;
    font-weight: 500;
    text-decoration: none;
}

p a:hover {
    color: red
}

section#hero {
    display: flex;
    flex-direction: column;
    background-image: url(assets/background-sketchpaper-prototype.png);
    height: 100vh;
    align-self: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    align-items: center;
    justify-content: center;
}

div#hero-content {
    background-color: rgba(0, 0, 0, 0.866);
    color: rgb(255, 255, 255);
    width: 40%;
    padding: 30px;
    margin: 20px;
    border-radius: 2%;
}

/* Header CSS */
header#header-main {
    width: 100%;
    background-color: rgba(0, 0, 0, 0.955);
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 110px;
}

h1#logo {
    font-family: 'M PLUS Rounded 1c', sans-serif;
    text-transform: uppercase;
    font-size: 3em;
    font-weight: 800;
    padding: .5em;
}

h1#logo a {
    color: rgba(255, 255, 255, 0.879);
    text-decoration: none;
}

nav#nav-main ol {
    display: flex;
    justify-content: space-around;
    padding: 1em;
}

nav#nav-main ol li a {
    padding: 0.625em;
    margin-left: 1.25em;
    font-family: 'M PLUS Rounded 1c', sans-serif;
    font-size: 1.5em;
    font-weight: 700;
    color: rgba(79, 66, 255, 0.879);
    text-decoration: none;
    background-color: rgba(74, 74, 74, 0.2);
    border-radius: 0.625em;
}

nav#nav-main ol li a:hover {
    background-color: rgba(94, 94, 94, 0.4);
    color: red;
}

main {
    width: 100%;
    max-width: 1920px;
}

/* intro css */
div#intro {
    display: flex;
    padding: 20px;
    background-color: rgb(231, 231, 231);
    align-items: center;
}

div#intro-content {
    display: flex;
    padding: 20px;
    justify-content: center;
}

div#intro h2 {
    font-family: 'M PLUS Rounded 1c', sans-serif;
    font-size: 2em;
    font-weight: 800;
    margin-left: 20px;
    color: rgba(79, 66, 255, 0.879);
}

div#intro p {
    font-family: 'M PLUS Rounded 1c', sans-serif;
    font-size: 1.1em;
    font-weight: 500;
    max-width: 35%;
    margin-left: 20px;
    margin-top: 50px;
    line-height: 20px;
}

div#intro img {
    margin: 20px;
}

img {
    border-radius: 2px;
}

/* quote css */
div.quote {
    font-family: 'M PLUS Rounded 1c', sans-serif;
    font-size: 1.5em;
    font-weight: 500;
    height: calc(45vh - 110px);
    /* height: 30vh; */
    padding: 20px;
    display: flex;
    color: white;
    background-image: url(assets/scribble.png);
    background-repeat: repeat;
    background-position: center center;
}

div.quote blockquote {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

div.quote blockquote p {
    margin: 5px;
}

div.quote blockquote p em {
    font-style: italic;
}

/* recent-projects */
div#recent-projects {
    background-color: rgb(231, 231, 231);
    display: flex;
    padding: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

section#text-recent {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    font-family: 'M PLUS Rounded 1c', sans-serif;
    max-width: 300px;
    margin-right: 50px;
}

section#text-recent h2 {
    font-weight: 800;
    font-size: 2em;
    margin-top: 15px;
    margin-bottom: 20px;
    color: rgba(79, 66, 255, 0.879);
}

section#text-recent p {
    font-weight: 500;
    font-size: 1.1em;
    line-height: 20px;
    margin-bottom: 20px;
}
section#projects-text {
    background-color: rgb(231, 231, 231);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    font-family: 'M PLUS Rounded 1c', sans-serif;
}
section#projects-text h2 {
    font-weight: 800;
    font-size: 2em;
    margin-top: 20px;
    margin-bottom: 20px;
    margin-left: 40px;
    color: rgba(79, 66, 255, 0.879);
}
section#projects-text p {
    font-weight: 500;
    font-size: 1.1em;
    line-height: 20px;
    margin-left: 40px;
}

div#recent-projects div#cards {
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin-left: 20px;
}

section.cards {
    background-color: rgb(0, 0, 0, 0.955);
    padding: 10px;
    margin: 10px;
    border-radius: 2px;
    display: flex;
    flex-direction: column;
}

section.cards h2 {
    font-family: 'M PLUS Rounded 1c', sans-serif;
    font-weight: 800;
    font-size: 1.5em;
    margin-bottom: 10px;
}

section.cards h3 {
    font-family: 'M PLUS Rounded 1c', sans-serif;
    font-weight: 700;
    font-size: 1.2em;
    margin: 10px;
}

section.cards p {
    font-family: 'M PLUS Rounded 1c', sans-serif;
    font-weight: 500;
    font-size: .9em;
    margin-left: 10px;
    margin-bottom: 5px;
    font-style: oblique;
}

img#bottle-design:hover {
    content: url(assets/bottle-design-clr.png);
}

img#posterzine:hover {
    content: url(assets/posterzine-clr.png);
}

img#storytelling:hover {
    content: url(assets/motion-and-story-clr.png);
}


/* Footer CSS */
footer {
    background-color: rgba(0, 0, 0, 0.955);
    font-family: 'M PLUS Rounded 1c', sans-serif;
    font-weight: 500;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    padding: 10px;
    color: rgb(255, 255, 255);
}

footer div#stack {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: left;
    align-self: center;
    margin: 5px;
}

nav#nav-footer {
    display: flex;
    flex-wrap: wrap;
}

nav#nav-footer ol {
    display: flex;
    justify-content: space-around;
    padding: 20px;
}

nav#nav-footer ol li a {
    padding: 10px;
    margin: 10px;
    font-family: 'M PLUS Rounded 1c', sans-serif;
    font-size: 1.5em;
    font-weight: 700;
    color: rgba(79, 66, 255, 0.879);
    text-decoration: none;
    background-color: rgba(74, 74, 74, 0.2);
    border-radius: 10px;
}

nav#nav-footer ol li a:hover {
    background-color: rgba(94, 94, 94, 0.4);
    color: red;
}

footer div#footer-text {
    max-height: 50px;
    padding: 25px;
    margin-left: 10px;
    display: flex;
    flex-direction: row;
}

footer div#footer-text p {
    margin-left: 5px;
}

footer div#links {
    display: flex;
    flex-direction: column;
}

footer img:hover {
    content: url(assets/footer-prototype-image-open.png);
}

/* Media Queries */
@media screen and (max-width: 900px) {    
    header#header-main{
        display: block;
    }
}
@media screen and (max-width: 800px) {   
    header#header-main {
        width: 100%;
    } 
    header#header-main h1{
        font-size: 2.5em;
    } 
    nav#nav-main ol{
       flex-wrap: wrap;
    }
    nav#nav-main ol li a{
        font-size: 1.2em;
     }
}
@media screen and (max-width: 490px) {  
    footer {
        width: 100%;
    }
footer div#links a img{
width: 100%;
}
footer div#stack{
    width: 100%;
}
nav#nav-footer ol{
    flex-wrap: wrap;
    padding-bottom: 0%;
 }
 nav#nav-footer ol li{
    margin-bottom: 2.3em;
    font-size: 1.2em;
 }
 footer div#footer-text {
    padding-top: 0%;
    line-height: 110%;
}
}