/*
    File Name: portfolio-style.css
    Author: Rebecca Arango
    Date: 08/17/2020
*/

@import url('https://fonts.googleapis.com/css2?family=Alata&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lusitana:wght@700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Tangerine:wght@700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:ital@0;1&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Crimson+Pro:wght@200;400&family=EB+Garamond:ital@0;1&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Crimson+Text:ital,wght@0,400;0,600;0,700;1,400;1,600;1,700&display=swap');

/*This font and its file is not uploaded to site as of 1/2/2023*/
@font-face {
    font-family: 'Trade Gothic';
    src: url(../14\ Trade\ Gothic\ Font\ Download/Trade\ Gothic\ LT.ttf)
}

*
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    --blueprint: rgba(120, 170, 256, 0.25);
    --dustpink: rgba(194, 149, 173);
    --lightdustpink: rgb(227, 206, 217);
    --petalpink: rgb(248, 242, 246);
    --wellesleymain: rgb(47, 47, 155);
    --wellesleyaccent: rgb(143, 152, 196);
    --STEMSPOTmain: rgb(249, 203, 156);
    --STEMSPOTaccent: black;
    --malibumain: rgb(28, 35, 136);
    --malibuaccent: rgb(230, 157, 2);
    --periwinkle: rgb(99, 57, 215);
}
::-webkit-scrollbar {
    width: 20px;
}

::-webkit-scrollbar-thumb {
    background-color: var(--dustpink);
    border-radius: 50px;
    border: 7.5px solid white;
}
.loading-screen {
    position: fixed;
    width: 100%;
    top: 11vh;
    height: 100vh;
    background-color: white;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    z-index: 2;
}
.loader {
    width: 20px;
    height: 20px;
    background-color: var(--dustpink);
    border-radius: 50px;
    animation: flash 0.5s ease-in alternate infinite;

   /* border: 3px solid white;
    border-top: 3px solid var(--periwinkle);
    border-right: 3px solid var(--periwinkle);
    border-radius: 50px;
    animation: spin 1s linear infinite;
    */
    margin: 0 auto;


}
@keyframes flash {
    from { opacity: 0};
    to { opacity: 1};
}
@keyframes spin {

    0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg);}

}
@media screen and (min-width: 900px)
{
    .loading-screen {
        width: 80%;
        height: 100vh;
        top:0;
    }
}
/*Home*/
a
{
    text-decoration: none;
}

/*Personal Icons*/
.Planet-Rebecca-Homepage
{
    width: 70%;
    margin: 0 auto;
}
.Planet-Rebecca-About
{
    width: 70%;
    margin: 0 auto;
}

/*Link*/
.Link
{
    width: 12.5%;
    margin-left: 5%;
    margin-bottom: 5%;
}

/*Sidebar and Topbar*/
#Sidebar
{
    display: none;
}
#Topbar
{
    display: block;
    width: 100vw;
    height: 11vh;
    background-color: var(--petalpink);
    position: fixed;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    z-index:3;
}
#Navigation-Mobile
{
    display: none;
}
#Burger-Container
{
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-inline-start: 5%;
}
.Burger-Hover
{
    background-color: var(--dustpink);
}
.Burger>div
{
    width: 20px;
    height:2px;
    margin: 5px auto 5px auto;
    background-color: black;
}

#Topbar>header
{
    padding-inline-end: 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
#Topbar h3
{
    font-size: 100%;
    margin-left: auto;
    margin-right: 0;
    font-family: 'Oswald', sans-serif;
    letter-spacing: 3px;
    text-transform: uppercase;
}
#Topbar header>p
{
    margin-right: 2%;
    margin-left: auto;
    font-size: 65%;
    font-family: 'EB Garamond', sans-serif;
    letter-spacing: 2px;
    font-weight: 700;
    text-transform: lowercase;
}
/*Navigation Mobile Show*/
.Navigation-Mobile
{
    position:fixed;
    height: 150vh;

    left: 0px;
    top:11vh;
    background-color: var(--petalpink);
    width: 40%;
    transform: translateX(-100%);
    transition: transform 0.25s;
}
.Navigation-Mobile-Active
{
    transform: translateX(0%);
}
.Navigation-Mobile a.active {
    color: var(--dustpink);
    border-right: solid 5px var(--dustpink);
}
.Navigation-Mobile ul
{
}
.Navigation-Mobile li
{
    list-style-type: none;
    margin: 15% 0;
    text-align: right;
}

.Navigation-Mobile a
{
    text-decoration: none;
    color: black;
    padding: 0 7.5% 0 0;
    font-family: 'EB Garamond', sans-serif;
    letter-spacing: 2px;
    font-weight: 700;
    text-transform: lowercase;

}

/*Burger-Animation*/
.Burger-Line-1, .Burger-Line-2, .Burger-Line-3
{
    transition: 0.25s;
}
.x .Burger-Line-1
{
    transform: rotate(-45deg) translate(-5px, 5px);
}
.x .Burger-Line-2
{
    opacity: 0;
}
.x .Burger-Line-3
{
    transform: rotate(45deg) translate(-5px, -5px);
}
.Navigation-Mobile a:hover, .Navigation-Mobile a:active
{
    color: var(--dustpink);
}

.Grid
{
    display: grid;
    grid-template-columns: 100vw;
    grid-template-rows: 10vh auto;

}

/*Stylizing the page titles for Home, Webwork, Artwork, and About.*/
.Page-Title
{
    font-family: "Oswald", sans-serif;
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
    font-size: 150%;
    letter-spacing: 3px;
    margin-bottom: 5%;
    margin-top: 5%;
    transition: letter-spacing 2s, padding-inline-start 2s;
    color: black;
}

#Home-Portrait
{
    width: 75%;
    display: block;
    margin: 0 auto;
}

.Header-Text
{
    width: 75%;
    margin: 0 auto 5% auto;
}
.Header-Text h1
{
    font-size: 175%;
    font-family: 'EB Garamond', sans-serif;
    font-weight: 700;
    letter-spacing: 2px;
    margin: 0 0 5% 0;
}
.Header-Text .View-Project-Button p
{
    font-family: "Oswald", sans-serif;
}
.Header-Text p
{
    font-family: "EB Garamond", sans-serif;
    letter-spacing: 1px;
    line-height: 25px;
    margin: 0 0 5% 0;
    font-weight: 700;
    font-size: 14px;
}

.View-More-Grid .View-Project-Button
{

    margin: 0 auto 5% auto;
}

/*Skills and Explore Grid*/
.Skills-Explore-Grid h2
{
    font-family: "Oswald", sans-serif;
    color: var(--dustpink);
    text-align: center;
    margin: 5% 0;
    font-size: 200%;
    margin: 0 auto;
}
.Skills-Explore-Grid>section
{
    margin: 5% 0 0 0;
}
#Skills-Section
{
    margin: 5% 5%;
}
.Explore-Section .View-Project-Button
{
    margin: 5% auto;
}
/*Explore Grid*/
.Explore-Grid
{
    display: grid;
    grid-template-columns: 50% 50%;
    margin: 0 5%;
}
.Explore-Grid div
{
    width: 100%;
    margin: 0 auto;
}
.Explore-Grid div:hover
{
    background-color: var(--petalpink);
}

/*Icon Grid*/
.Icon-Grid
{
    display: grid;
    grid-template-columns: auto auto auto auto;
    grid-row-gap: 10px;
    width: 100%;
    margin: 0 auto;
}
.Icon-Grid div
{
    margin: 0 auto;
}
.Fun-Facts
{
    margin: 0 5%;
}
.Goodbye-Planet
{
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.hyperlink {
  color: var(--dustpink);
}
.hyperlink:hover {
  color: var(--lightdustpink);
}
/*Stylization for footer*/
footer
{
    text-align: center;
    padding: 5% 0 2.5% 0;
    font-family: "EB Garamond", sans-serif;
    letter-spacing: 2px;
    font-weight: 700;
}
/*900px+*/
@media screen and (min-width: 900px)
{
    .Grid
    {
        margin-top: 0;
        display: grid;
        grid-template-columns: 20% auto;
        padding-top: 0;
    }

    #Topbar
    {
        display: none;
    }

    #Sidebar
    {
        display: block;
        height: 100%;
        width: 20%;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 2;

    }
    #Sidebar>header
    {
        padding-block-start: 30%;
        text-align: right;
    }
    #Sidebar h3
    {
        font-size: 130%;
        padding-block-end: 2.5%;
        font-family: 'Oswald', sans-serif;
        letter-spacing: 3px;
        font-weight: 700;
        text-transform: uppercase;
        font-size: 16px;

    }
    #Sidebar p
    {
        font-size: 95%;
        padding-block-end: 10%;
        font-family: 'EB Garamond';
        text-transform: lowercase;
        font-style: italic;
        font-weight: 700;
        letter-spacing: 2px;
        font-size: 14px;
        padding-inline-end: 3.5px;
    }
    #Navigation
    {
        list-style-type: none;
        font-family: "Crimson Pro","EB Garamond", sans-serif;
        font-weight: 700;
        letter-spacing: 3px;
        text-align: right;
        text-transform: lowercase;
        font-size: 14px;
    }
    #Navigation li
    {
        margin: 5% 0;
    }
    #Navigation a
    {
        text-decoration: none;
        color: black;
        padding: 0 10px;
    }
    #Navigation a:hover, #Navigation a:active
    {
        color: var(--dustpink);
    }

    #Navigation a.active {
        color: var(--dustpink);
        border-right: solid 5px var(--dustpink);
    }

    ul ul
    {
        list-style-type: none;
    }
    #Navigation-Drawer
    {
        padding-inline-start: 5%;
        display: none;
    }
    #Navigation-Drawer li
    {
        margin: 1% 0;
    }
    #Work-Link
    {
        cursor: pointer;
    }
    /*Styles for page title on Home, Webwork, Artwork, and About.*/
    .Page-Title
    {
        padding: 2.5% 0;
        font-size: 200%;
    }
    .Page-Title-Active
    {
        padding-inline-start: 4vw;
        letter-spacing: 4vw;
    }
    .Greeting-Grid
    {
        display: grid;
        grid-template-columns: 50% 50%;
    }
    .price-table td {
      font-family: "EB Garamond", arial;
      text-align: left;
      letter-spacing: 1px;
      font-size: 14px;
      font-weight: bolder;
    }

    #Home-Portrait
    {
        width: 90%;
        margin: 0 auto 0 0;
    }
    #Skills-Section
    {
        margin: 0 10% 0 auto;
    }
    .Skills-Explore-Grid>section
    {
        margin: 0;
    }

    .Skills-Explore-Grid
    {
        display: grid;
        grid-template-columns: 50% 50%;
        margin: 5% 0 0 0;
    }
    .Explore-Grid
    {
        grid-template-rows: 50% 50%;
        grid-template-columns: auto;
        width: 75%;
        margin: 0 auto;
    }
    .Explore-Grid div
    {
        width: 50%;
    }

}


/*600px-900px*/
/*WORK*/
/*Defining Work Grid*/
.Grid-Work
{
    display: grid;
    grid-template-columns: auto;
    grid-template-rows: auto auto auto auto auto auto;
}

/*Sizing and positioning the individual mockups.*/
#Floral-Nostalgia-Thumbnail
{
    /*width: 15%;
    margin: 0 auto 0 auto;*/
}
#Wellesley-Registration-Mockup
{
    /*width: 55%;
    margin: 0 auto 0 auto;*/

}
#Commissions-Thumbnail
{
    /*width: 30%;
    margin: 5% auto 0 auto;*/
}

 /*Centering the project description text.*/
.Grid-Work .Grid-Item
{

}
.Thumbnail {
  width: 40%;
  margin: 0 auto 5% auto;
}
/*Adding space between the projects.*/
.Mockup-Text
{
    padding: 0 5%;
    margin: 0 0 25% 0;
    text-align: center;
}

/*Styles for the project descriptions text.*/
.Project-Header
{
    color: var(--dustpink);
    font-size: 150%;
    font-family: 'Oswald', sans-serif;
    letter-spacing: 2px;
    margin: 0 0 15px 0;

}
.Project-Subheader
{
    font-weight: 700px;
    font-family: "Oswald", sans-serif;
    letter-spacing: 2px;
    margin: 0 0 15px 0;
    font-size: 14px;
}

.Project-Description
{
    font-family: "EB Garamond", sans-serif;
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 14px;
    line-height: 25px;
    padding:0 0 7.5% 0;
}

/*Styles for the view project button.*/
.View-Project-Button
{
    width: 150px;
    padding: 2%;
    border-radius: 20px;
    margin: 0 auto;
    cursor: pointer;
    background-color: var(--petalpink);
    color: var(--dustpink);
    text-align: center;
    font-family: "Oswald", sans-serif;
    letter-spacing: 1px;
    font-size: 12px;
    box-shadow: 1.4px 1.9px 2.2px rgb(0 0 0 / 2%), 3.5px 4.7px 5.3px rgb(0 0 0 / 3%), 6.5px 8.8px 10px rgb(0 0 0 / 4%), 11.6px 15.6px 17.9px rgb(0 0 0 / 4%), 21.7px 29.2px 33.4px rgb(0 0 0 / 5%), 52px 70px 80px rgb(0 0 0 / 7%);

}
.View-Project-Button:active
{
    box-shadow: none;
}
/*900px+*/
@media screen and (min-width: 900px)
{
    /*Defining and ordering grid for Webwork page.*/
    .Grid-Work
    {
        grid-template-columns: 50% 50%;
        grid-template-rows: auto;
        grid-row-gap: 20vh;
        margin: 0 7.5% 0 7.5%;
    }
    .Item-1
    {
        order: 1;
    }
    .Item-2
    {
        order: 2;
    }
    .Item-3
    {
        order: 3;
    }
    .Item-4
    {
        order: 4;
    }
    .Item-5
    {
        order: 5;
    }
    .Item-6
    {
        order: 6;
    }


    /*Adding background color to Mockups.*/
    .Mockup
    {
        /*background-color: var(--petalpink);*/
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-content: center;
        box-shadow: 1.4px 1.9px 2.2px rgb(0 0 0 / 2%), 3.5px 4.7px 5.3px rgb(0 0 0 / 3%), 6.5px 8.8px 10px rgb(0 0 0 / 4%), 11.6px 15.6px 17.9px rgb(0 0 0 / 4%), 21.7px 29.2px 33.4px rgb(0 0 0 / 5%), 52px 70px 80px rgb(0 0 0 / 7%);
    }
    .Thumbnail img
    {
      box-shadow: 1.4px 1.9px 2.2px rgb(0 0 0 / 2%), 3.5px 4.7px 5.3px rgb(0 0 0 / 3%), 6.5px 8.8px 10px rgb(0 0 0 / 4%), 11.6px 15.6px 17.9px rgb(0 0 0 / 4%), 21.7px 29.2px 33.4px rgb(0 0 0 / 5%), 52px 70px 80px rgb(0 0 0 / 7%);
    }
    /*Deleting created space on mobile between projects.*/
    .Mockup-Text
    {
        margin: 0px;
        display: flex;
        flex-direction: column;
        Justify-content: center;
        text-align: left;
    }

    /*Vertically centering all content and horizontally lefting all text in the grid items.*/
    .Grid-Work .Grid-Item
    {
    }

    /*Styles for Mockup Text*/
    .Project-Header
    {
        font-size: 150%;
    }
    .Project-Description
    {
        padding: 0 5% 5% 0;
    }
    .View-Project-Button
    {
        margin: 0;
    }

    /*Sizing and positioning the individual mockups.*/
    #Floral-Nostalgia-Thumbnail
    {
        width: 65%;
        margin: 50px;
    }
    #Wellesley-Registration-Mockup
    {
        width: 65%;
        margin: 50px;
    }
    #Commissions-Thumbnail
    {
        width: 80%;
        margin: 50px;
    }
}
/********************Wellesley Registration*/
.Project-Page-Title
{
    margin: 0 auto 5% 5%;
}
.Project-Page-Title>h1
{
    font-family: "Oswald", sans-serif;
    letter-spacing: 2px;
    padding-top: 5%;
    color: var(--wellesleymain);
    font-size: 200%;
}
.Project-Page-Title>h3
{
    font-family: "EB Garamond", 'Times New Roman', Times, serif;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 0 5% 0 0;
}
.Project-Text
{
    width: 100%;
    padding: 0 5% 0 5%;
    margin: 0 0 20% 0;
}
.Project-Text h2
{
    font-family: "Oswald", sans-serif;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 150%;
    margin: 0 0 20px 0;

}
.Project-Text h3
{
    font-family: "Oswald", sans-serif;
    letter-spacing: 2px;
    font-size: 110%;
    text-transform: uppercase;
    margin: 0 0 3% 0;
}
.Project-Text p
{
    font-family: "EB Garamond", "Times New Roman", Times;
    letter-spacing: 1px;
    font-weight: 700;
    margin: 0 0 3% 0;
    line-height: 25px;
}
.Project-Text ul
{
    margin-inline-start: 1em;
}
.Project-Text li
{
    font-family: "EB Garamond", "Times New Roman", Times;
    font-weight: 700;
    letter-spacing: 1px;
    margin: 0 0 3% 0;
}
.Wellesley-Registration-Page-Title h1
{
    color: var(--wellesleymain);
}
.WR-Project-Text h2
{
    color: var(--wellesleymain);
}
.WR-Project-Text h3
{
    color: var(--wellesleyaccent);
}
.Persona-Grid
{
    width: 100%;
}
.Personas-Index-Flexbox
{
    display: flex;
    flex-direction: row;
    align-items: center;
    margin: 5% 0 0 0;
}

.Persona
{
    /*width: %;*/
}
#Persona-Jane
{
    margin: 0 2.5% 0 5%;
}
#Persona-Hannah
{
    margin: 0 5% 0 2.5%;
}

.Persona img
{
    display: block;
    margin: 0 auto;
    width: 100%;
}

.Slideshow
{
    width: 100%;
    height: 35vh;
    position: relative;
    margin: 0 auto;
}
.Slide
{
    display: none;
}
.Previous-Button, .Next-Button
{
    position: absolute;
    top: 50%;
    padding: 0 50px;
    color: grey;
    font-weight: bold;
    font-size: 25px;
    /*transition: 0.5s ease;*/
    user-select: none;
}

.Next-Button
{
    right: 0;
}
.Previous-Button:hover, .Next-Button:hover
{
    color: black;
}
.Slideshow-Dots
{
    text-align: center;
}
.Dot
{
    height: 10px;
    width: 10px;
    border-radius: 50%;
    background-color: black;
    display: inline-block;
    margin: 0 2px;
}
.Dot:hover
{
    background-color: var(--wellesleylightblue);
}
.Dot-Active
{
    background-color: var(--wellesleylightblue);
}
.Paper-Prototype
{
    width: 50%;
    position: absolute;
    z-index: -1;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.vertical-center
{
    display: flex;
    flex-direction: column;
    justify-content: center;
}
#Paper-Prototype-4
{
    display: flex;
    flex-direction: row;
    justify-content: center;
}
.Task-Analysis-Flexbox
{
    margin: 5% 0 0 0;
}
@media screen and (min-width: 600px)
{
    .Slideshow
    {
        margin: 15% 0 0 0;
    }
}
@media screen and (min-width: 900px)
{

    .Project-Page-Title>h1
    {
        font-size: 250%;
    }
    .Current-System-Grid
    {
        display: grid;
        grid-template-columns: 50% auto;
        grid-template-rows: auto;
    }
    .vertical-center
    {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .Persona
    {
        width: 100%;
    }
    .Persona img
    {
        width: 100%;
    }
    .Persona-Grid
    {
        display: grid;
        grid-template-columns: 33% auto;
        grid-template-rows: auto;
        grid-column-gap: 2.5%;
    }
    #Persona-Jane
    {
        margin: 0 1.25% 0 auto;
    }
    #Persona-Hannah
    {
        margin: 0 auto 0 1.25%;
    }

    /*Task Analysis Pictures - WR */
    .Task-Analysis-Flexbox
    {
        display: grid;
    }
    .Task-Analysis-Flexbox div
    {
        width: 80%;
        margin: 0 auto;
    }
    #Task-Tree-1
    {
        grid-column: 1 / span 1;
        grid-row: 1;
    }
    #Task-Tree-2
    {
        grid-column: 2 / span 1;
        grid-row: 1;
    }
    #Task-Tree-3
    {
        grid-column: 1 / span 2;
        grid-row: 2;
    }

    .Project-Text
    {
        margin: 0 0 10% 0;
    }
    .Project-Text h2
    {
        font-size: 200%;
    }
    .Project-Text h3
    {
        font-size: 150%;
    }

    section.Design-Direction
    {
        display: grid;
        grid-template-columns: 50% 50%;
    }
    .Slideshow
    {
        height: 40vh;
        margin: 0;
    }
    .Previous-Button, .Next-Button
    {
        padding: 0 50px;
    }
    .Personas-Index-Flexbox
    {
        margin: 0;
    }
}

/*STEMSPOT Page*/

.SS-Project-Title h1
{
    color: var(--STEMSPOTmain);
}
.SS-Project-Text h2
{
    color: var(--STEMSPOTmain);
}
.SS-Project-Text h3
{
    color: var(--STEMSPOTaccent);
}
.STEMSPOT-Persona
{
    margin: 0 1%;
}
#STEMSPOT-Design-Direction-Image
{
    width: 75%;
    display: block;
    margin: 0 auto;
}
/*Malibu Good Foods Page*/
.MGF-Project-Title h1
{
    color: var(--malibumain);
}
.MGF-Project-Text h2
{
    color: var(--malibumain);
}
.MGF-Project-Text h3
{
    color: var(--malibuaccent);
    margin: 5% 0 0 0;
}

/*Artwork*/
.Artwork-Grid
{
    margin: 3.5%;
    display: grid;
    grid-template-columns: auto auto;
    grid-row-gap: 7vw;
}
.Artwork-Grid>div
{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.Artwork-Grid>.Right-Cell
{
    margin: 0 7% 0 7%;
}
.Artwork-Grid>.Left-Cell
{
    margin: 0 7% 0 7%;
}
.Modal {
    padding: 0px;
    display:none;
    position: fixed;
    z-index:1;
    left:0;
    bottom: 0;
    top: 11vh;
    right: 0;
    background-color: rgba(250, 250, 250, 0.75);
    flex-direction: column;
    align-items: center;
    justify-content: center;

}
.Close-Icon-Wrapper {

    margin: 15px 10px 0 0;

    display: flex;
    flex-direction: row;
    justify-content: flex-end;

}
.Close-Icon {
    padding: 7.5px 1.5px 7.5px 3.5px;
}
.Close-Icon:hover>div {
    box-shadow:0px 0px 3px var(--periwinkle);

}
.Close-Icon>div{
   width: 20px;
   height: 3px;
   border-radius: 5px;
   background-color: var(--periwinkle);

}
.Close-Icon-Line-1 {
   transform: rotate(45deg) translate(0, 2px);
}
.Close-Icon-Line-2 {
   transform: rotate(-45deg) translate(0, -2px);

}
.Modal-Inner-Wrapper {
   padding: 10px 10px 40px 10px;
   padding: 10px 10px 20px 10px;
    margin: 0 auto;
    width: 300px;
    height: 400px;
   background-color: white;
   border-radius: 20px;
   box-shadow: 0px 0px 2.2px rgb(0 0 0 / 2%), 0px 0px 5.3px rgb(0 0 0 / 3%), 0px 0px 10px rgb(0 0 0 / 4%), 0px 0px 17.9px rgb(0 0 0 / 4%), 0px 0px 33.4px rgb(0 0 0 / 5%), 0px 0px 80px rgb(0 0 0 / 32%);
}
.Modal-Image-Wrapper{
    padding: 20px 20px 30px 20px;
    width: 275px;
    height: 275px;
    background-color: rgb(0,0,0,0);
    margin: 0 auto;

}

.Modal-Image-Wrapper img{
object-fit: contain;


}
.Modal-Text-Grid {
    display: grid;
    width: 250px;
    margin: 0 auto;
    color: var(--periwinkle);

    font-size: 12px;
    font-weight: bold;
    grid-template-areas: 'Artwork-Title Artwork-Price'
                           'Artwork-Date Artwork-Price';
   gap: 10px;

}
.Modal-Text-Grid-No-Price {
    display: grid;
    width: 250px;
    margin: 0 auto;
    color: var(--periwinkle);
    font-size: 12px;
    font-weight: bold;
    grid-template-areas: 'Artwork-Title'
                         'Artwork-Date';
    gap: 10px;
    text-align: center;
}
.Artwork-Title {
    grid-area: Artwork-Title;
    font-family: 'EB Garamond';
    font-style: italic;
    letter-spacing: 1px;
    font-size: 14px;
}
.Artwork-Price {
    grid-area: Artwork-Price;
    text-align: end;
    font-family: 'Courier New';
}
.Artwork-Date {
    grid-area: Artwork-Date;
    font-family: 'EB Garamond';
    letter-spacing: 1px;
    font-size: 10px;
}

@media screen and (min-width:600px ){
     .Modal {
        padding: 50px;
        display:none;
        top:11vh;
     }
     .Modal-Inner-Wrapper {
        width: 500px;
        height: 600px;
     }
     .Modal-Image-Wrapper {
        padding: 40px 40px 40px 40px;
        width: 450px;
        height: 375px;
     }
     .Modal-Text-Grid {
        width: 400px;
     }
}
@media screen and (min-width: 900px)
{
    .Modal {
        padding: 50px;
        display:none;
        left: 20%;
        top: 0;
     }
     .Modal-Inner-Wrapper {
        width: 500px;
        height: 600px;
     }
     .Modal-Image-Wrapper {
        padding: 40px 40px 40px 40px;
        width: 450px;
        height: 375px;
     }
     .Modal-Text-Grid {
        width: 400px;
     }
    .Artwork-Grid
    {
        margin: 2.5%;
        display: grid;
        grid-template-columns: auto auto auto;
    }
    .Artwork-Grid>div
    {
        width: 80%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .Artwork-Grid>.Right-Cell, .Artwork-Grid>.Left-Cell
    {
        margin: 0 auto;
    }
}
/*Resume*/
.Resume {
    width: 75%;
    margin: 10% auto;
    border-radius: 20px;
    box-shadow: 0px 0px 2.2px rgb(0 0 0 / 2%), 0px 0px 5.3px rgb(0 0 0 / 3%), 0px 0px 10px rgb(0 0 0 / 4%), 0px 0px 17.9px rgb(0 0 0 / 4%), 0px 0px 33.4px rgb(0 0 0 / 5%), 0px 0px 80px rgb(0 0 0 / 32%);
    padding: 50px;

}
.Resume h1 {
    font-family: 'Oswald', sans-serif;
    margin: 0 0 5px 0;
    font-size: 100%;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.Resume p
{
    font-family: 'EB Garamond', sans-serif;
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 14px;
    margin: 0 0 5px 0;
}
.Resume ul
{
    font-family: "EB Garamond", sans-serif;
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 12px;
    margin: 15px 0 35px 0;
}
#Education
{
    margin: 0 0 35px 0;
}
.Experience-Dates
{
    font-style: italic;
}
/*Contact*/
.contact-form-firstname {
    grid-area: firstname;
}
.contact-form-lastname {
    grid-area: lastname;
}
.contact-form-email {
    grid-area: email;
}
.contact-form-message {
    grid-area: message;
}

.contact-form {
    padding: 35px;
    background: var(--petalpink);
    border-radius: 10px;
    width: 90%;
    box-shadow: 1.4px 1.9px 2.2px rgb(0 0 0 / 2%), 3.5px 4.7px 5.3px rgb(0 0 0 / 3%), 6.5px 8.8px 10px rgb(0 0 0 / 4%), 11.6px 15.6px 17.9px rgb(0 0 0 / 4%), 21.7px 29.2px 33.4px rgb(0 0 0 / 5%), 52px 70px 80px rgb(0 0 0 / 7%);
    margin: 0 auto;


}
.contact-form-wrapper {
    margin: 0 25px;
}

textarea {
    height: 150px;
}
input, textarea {
    width:100%;
    padding: 5px;
    font-family: "EB Garamond", "Times New Roman", Times;
    margin: 0 0 3% 0;
    letter-spacing: 1px;
    font-weight: bold;
    line-height: 25px;
    color: black;
    border: none;
    border-bottom: dotted 2px var(--dustpink);
    background: var(--petalpink);

}
input:focus-visible, textarea:focus-visible{
    outline: none;
    border-bottom: solid 2px var(--dustpink);
}
input::placeholder, textarea::placeholder {
    font-family: "EB Garamond", "Times New Roman", Times;
    margin: 0 0 3% 0;
    letter-spacing: 1px;
    font-weight: bold;
    line-height: 25px;
    color: rgb(143, 121, 121);
    font-style: italic;
}
input::first-line {
    padding: 5px;
}

button[type=submit] {
    width: 100px;
    height: 35px;
    border-radius: 20px;
    border-style: none;
    background-color: var(--dustpink);
    color: var(--petalpink);
    font-family: 'oswald';
    letter-spacing: 2px;
    text-transform: uppercase;
    box-shadow: 1.4px 1.9px 2.2px rgb(0 0 0 / 2%), 3.5px 4.7px 5.3px rgb(0 0 0 / 3%), 6.5px 8.8px 10px rgb(0 0 0 / 4%), 11.6px 15.6px 17.9px rgb(0 0 0 / 4%), 21.7px 29.2px 33.4px rgb(0 0 0 / 5%), 52px 70px 80px rgb(0 0 0 / 7%);
    content: "send";
}
button[type=submit]:hover {
    box-shadow: none;
}
button[type=submit]:focus {
    /*box-shadow: 0 0 15px var(--poppink);*/
    box-shadow: 0 0 15px var(--glow);
}
.submit-wrapper{
    text-align: center;
    grid-area: submit;
}
#submitair {
    width: 50px;
    height: 50px;
    border-radius: 25px;
}
#submitair img{
    width: 30px;
    margin: 0 auto;
    display: block;
}
@media screen and (min-width: 900px) {
    .contact-form {
        padding: 35px;
        background: var(--petalpink);
        border-radius: 10px;
        width:60%;
        box-shadow: 1.4px 1.9px 2.2px rgb(0 0 0 / 2%), 3.5px 4.7px 5.3px rgb(0 0 0 / 3%), 6.5px 8.8px 10px rgb(0 0 0 / 4%), 11.6px 15.6px 17.9px rgb(0 0 0 / 4%), 21.7px 29.2px 33.4px rgb(0 0 0 / 5%), 52px 70px 80px rgb(0 0 0 / 7%);
       margin: 0 auto;
       display: grid;
        column-gap: 20px;
        grid-template-areas:"firstname lastname"
                        "email email"
                        "message message "
                        "submit submit";

    }
}
