html {
    scroll-behavior: smooth;
}

* {
        box-sizing: border-box;
    }

    body{
        display: block;
        box-sizing: border-box;
        margin: 16px;
        font-size: 15px; /* Sets the font size to 15px */
        font-weight: 700; /*Sets the font weight to 700 */
        line-height: 1.2; /* Sets the line-height to 1.2 * the font-size */
        -webkit-text-size-adjust: 100%;
    }
    
    header{
        background-color: #f2f2f2;
        padding: 0;
        -webkit-box-shadow: 2px 3px 11px 0px rgba(88, 100, 105, 0.38);
        -moz-box-shadow:2px 3px 11px 0px rgba(88, 100, 105, 0.38);
        box-shadow: 2px 3px 11px 0px rgb(88 100 105/ 38%);
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        z-index: 99;
        box-sizing: border-box;
        font-family: 'Nunito',sans-serif;
        font-weight: 800;
        font-size: 19px;/* Sets the font size to 19px */
        line-height: normal;
        color: #425058;
    }

    .logo{
        width: 49%;
        height: auto;
        padding-top: 15px;
        display: block;
        margin: 0;
        margin-left: 10px;
        margin-right: auto;
        float: left;
    }

    nav > ul {
        list-style-type: none;
        padding: 0;
        padding-top: 66px;
        margin: 0;
        }
        
        nav > ul > li > a {
        padding: 0 15px;
        color: #425058;
        text-decoration: none;
        }
        
        .navtoggle, .navtoggle.responsive {
        position: relative;
        }
        
        .navtoggle li:not(:last-child) {
        display: none;
        }
        
        .navtoggle li .icon {
        position: absolute;
        right: 42px;
        top: 30px;
        font-size: 24px;
        padding-right: 0;
        }
        
        .navtoggle.responsive nav {
        padding: 24px 0 0;
        }
        
        .navtoggle.responsive li {
        display: block;
        padding: 20px ;
        border-bottom: 1px solid rgba(88, 100, 105, 0.38);
        }

        .navtoggle.responsive li:nth-last-child(2) {
            border-bottom: 0 solid transparent;
            margin-bottom: 5px;
          }

        .navtoggle.responsive li > a:visited{
            color: #586469;
        }
        
        .navtoggle.responsive li > a:hover,.navtoggle.responsive li > a:focus {
            opacity: 0.8;
            text-decoration: none;
        }
        
        .navtoggle.responsive li > a:active{
            color: #586469;
        }

    h1,h2,h3,h4 {
        line-height: normal;
    }
    
    
    h1{
        font-size: 32px;
        font-weight: 800;
        color: #425058;
        margin-block-start: 0.67em;
        margin-block-end: 0.67em;
    }
    
    h2{
        font-size: 28px;
        font-weight: 800;
        color: #425058;
    }
    
    h3{
        font-size: 24px;
        font-weight: 700;
    }
    
    h4{
        font-size: 20px;
        font-weight: 800;
    }
    
    h6{
        font-size: 18px;
        font-weight: 700;
    }
    
    p{
        font-size: 15px;
    }
    
    img { width: 100%; height: auto; display: block; margin: 0 auto;}

    main{
        display: block;
        box-sizing: border-box;
        background-color: #fff;
        align-content: center;
        font-family: 'Nunito',sans-serif;
        font-size: 15px;
        line-height: normal;
        color: #425058;
        }
    
    .main-container {
        display: block;
        max-width: 310px;
        padding: 0;
        margin: 0 auto;
        box-sizing: border-box;
        }
    
        .wrapper, .wrapper-2, .wrapper-3 {
            display: grid;
            grid-template-columns: 1fr;
            padding: 0 15px;
            margin: 0 auto;
        }
    
        .envelop, .envelop-2, .envelop-3 {
            display: grid;
            grid-template-columns: 1fr;
            row-gap: 50px;
            padding: 0 15px;
            margin: 0 auto;
        }

        .wrapper-stars{
            display: grid;
            grid-template-columns: repeat(3,1fr);
            grid-column: 1/3;
            column-gap: 20px;
            row-gap: 1em;
            box-sizing: border-box;
        }
        
        .left_column{
            margin-top: 110px;
            margin-left: 5px;
            padding-left: 5px;
            padding-right: 10px;
            width: 80%;
            height: auto;
        }
        
        .center_column{
            width: 130%;
            margin-top: 100px;
            display: block;
            margin-left: auto;
            margin-right: 90px;
        }
        
        .right_column{
        width: 30%; 
        margin-top: 110px; 
        margin-left: auto;
        padding-left: 20px;
        }

        .hero{
            text-align: center;
            display: block;
            box-sizing: border-box;
            top: 50px;
            margin-top: 0%;
            margin-left: auto;
            margin-right: auto;
            padding-top: 0%;
            padding-left: 0px;
            padding-right: 0px;
        }
        
        .pstar_1, .pstar_2{
            display: none;
        }
        
        .pstar_4{
            float: left;
            width: 5%;
            height: auto;
            margin-top: 15px;
            padding-top: 5px;
            margin-bottom: 0px;
            margin-left: 30px;
        }
        
        .pstar_3{
            float: none;
            width: 5%;
            height: auto;
            margin-top: 5px;
            padding-top: 0px;
            margin-bottom: 0px;
            margin-left: 90px;
        }

       
        .explore{
            margin-left: 5%;
            text-align: center;
            }

        .magic-quote{
            font-family:'Poppins',sans-serif;
            font-size: 18px;
            color: #586469;
            text-align: center;
            margin-left: auto;
            margin-right: auto;

        }

        .blink{
            margin-top: 0px;
            animation: blink 3s infinite;
        }
        
        @keyframes blink {
            100%{opacity: 1;
            transform: scale(0.5);}
            0%{opacity: 0;}
            100%{opacity: 1;
            transform: scale(1.1);}
        }
        
        .magicstar_1{
            float: left;
            width: 10%;
            height: auto;
            margin-top: 70px;
            margin-left: 40px;
            padding-right: 20px;
            margin-bottom: 0%;
            padding-top: 10px;
        }
        
        .magicstar_2{
            float: none;
            width: 8%;
            height: auto;
            display: block;
            margin-top: 0px;
            margin-left: auto;
            margin-right: auto;
            margin-bottom: 0%;
            padding-top: 10px;
        }
        
        .magicstar_3{
            float: right;
            width: 12%;
            height: auto;
            margin-top: 36px;
            margin-right: 30px;
            margin-bottom: 0%;
            padding-top: 10px;
        }
        
        .magicstar_4{
            float: left;
            width: 10%;
            height: auto;
            margin-top: 40px;
            margin-left: 5px;
            padding-left: 5px;
            padding-right: 0px;
            margin-bottom: 0%;
            padding-top: 10px;
        }
        
        .magicgif{
            float: none;
            width: 80%;
            height: auto;
            top: 0px;
            margin-top: 0px;
            margin-bottom: auto;
            padding-top: 0px;
            display: block;
            margin-left: auto;
            margin-right: auto;  
        }
        
        
        .wand{
            float: right;
            width: 38%;
            padding-top: 0px;
            padding-bottom: 150px;
            margin-bottom: 0px;
            animation: wand 2s ease infinite;
            transform-origin: center;
        }
        
        @keyframes wand{
            from{
        transform: rotateZ(0deg);
            }
            to{
        transform: rotateZ(-30deg);
            }
        }

        .projects{
            text-align: left;
            margin-left: auto;
            margin-top: 25px;
            margin-bottom: 15px;
            padding-top: 15px;
            padding-left: 0px;
            padding-right: 30px;
            border-bottom: 80px;
             padding-bottom: 5px;
            }
            
            .grey-bg{
                background-color: #425058;
                padding: 15px;
                margin-bottom: 50px;
            }

            .projecttitles{
                margin-top: 5px;
                text-decoration: underline white; 
                text-underline-offset: 5px;
            }


        .wrapper-2 {
            row-gap: 25px;
          }

        .recipeinfo{
            text-align: center;
            display: block;
            box-sizing: content-box;
            color: #fff;
        }
         

        .recipeimage{
            padding-top: 10px;
        }

        .trailinfo{
            text-align: center;
            display: block;
            box-sizing: content-box;
            color: #fff;
        }
        
        .trailimage{
            padding-top: 10px;
        }

        .furnestinfo{
            text-align: center;
            display: block;
            box-sizing: content-box;
            color: #fff;
        }

        .furnestimage{
            padding-top: 10px;
        }

        .prolificinfo{
            text-align: center;
            display: block;
            box-sizing: content-box;
            color: #fff;
        }

        .prolificimage{
            padding-top: 10px;
        }

        .noteinfo{
            text-align: center;
            display: block;
            box-sizing: content-box;
            color: #fff;
        }

        .noteimage{
            padding-top: 10px;
        }

        .chatboxinfo{
            text-align: center;
            display: block;
            box-sizing: content-box;
            color: #fff;
            text-align: center;
        }

        .chatboximage{
            padding-top: 10px;
        }

        .paintbutton{
            display: inline-block;
            margin-top: 30px;
            margin-bottom: 50px;
            margin-left: 30%;
            margin-right: auto;
            align-items: center;
            transition-duration: 0.2s;
            transition-property: opacity;
        }

        .paintbutton:hover, .paintbutton:focus{
            opacity: 0.8;
        }

        .button{
            display: inline-block;
            background-color: #425058;
            color: #fff;
            font-style: normal;
            font-size: 16px;
            text-emphasis: none;
            text-decoration: none;
            font-weight: bold;
            padding: 20px;
            border-radius: 2px;
            transition-duration: 0.2s;
            transition-property: opacity;
        }
        
        .button:hover,.button:focus{
            opacity: 0.8;
        }

        .switch{
            padding: 30px 0;
            content: " ";
            clear: both;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
        }

        a.font{
            color: #425058;
            font-weight: bold;
            text-decoration: none;
            text-emphasis: none;   
        }

        .right {
            text-align: right;
            float: right;
        }

        .left {
            float: left;
        }

/* ==============================
About Me 
================================= */

.aboutme{
    margin-top: 40px; 
    padding-top: 80px; 
    margin-bottom: 20px; 
    padding-bottom: 10px; 
    margin-left: 30px;
}

.myprofile{
    border: 3px solid #425058; 
    border-radius: 2px;
     padding: 10px; 
     width: 80%;
    height: auto;
}

.aboutinfo1{
    margin-top: 70px;
}

 .aboutinfo{
        margin-top: 100px;
        padding: 5px;
        display: inline-block;
    box-sizing: border-box;
    text-align: left;
    align-content: center;
    margin-left: auto;
    margin-right: auto;
        }

        .field1{
            width: 65%;
            height: auto;
            display: block;
            padding-bottom: 10px;
            margin-left: auto;
            margin-right: auto;
            align-items: center;
            margin-bottom: 20px;
        }
        
        .field_wrapper{
            width: 115%;
            display: grid;
            grid-template-columns: repeat(2,1fr);
            grid-column: 1/2;
            column-gap: 5px;
            row-gap: 2em; 
            margin-left: auto;
            margin-bottom: 10px;
        }
        
        .field4{
            width: 60%;
            height: auto;
            display: block;
            padding-bottom: 10px;
            margin-left: auto;
            margin-right: auto;
            align-items: center;
            margin-bottom: 20px;
        }
        
        .field5{
            width:60%;
            height: auto;
            display: block;
            padding-bottom: 10px;
            left: 0px;
            float: right;
            margin-right: 10px;
            margin-bottom: 20px;
        }

        .cv_button{
            display: inline-block;
            background-color: #425058;
            color: #fff;
            font-style: normal;
            font-size: 17px;
            text-emphasis: none;
            text-decoration: none;
            font-weight: bold;
            padding: 20px;
            border-radius: 1px;
            box-shadow: 2px 3px 15px 0px rgb(88 100 105/ 38%);
            transition: 0.2s opacity;
            margin-top: 40px;
            margin-left: 20%;
            margin-right: auto;
            margin-bottom: 15px;
            align-items: center;
            transition: 0.2s opacity;
        }
        
        .cv_button:hover,.cv_button:focus{
            opacity: 0.8;
        }

        .cv_button{
            margin-top: 20px;
            margin-left: 18%;
    margin-right: auto;
    align-items: center;
    margin-bottom: 15px;
        }

/* ==============================
Project 1 Fettle Relish 
================================= */

.title{
    position: relative;
    padding-bottom: 5px;
    margin-left: 0px;
    padding-left: 0px;
    margin-top: 100px; 
    padding-top: 20px;
}

.imagefr1{
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 1;
}

.imagefr2{
    position: absolute;
    padding-left: 5px;
    top: 20px;
    left: 10px;
    z-index: 3;
}


.leaves{
    width: 19%;
    float: right;
    left: 0px;
    margin-top: 105px;
    padding-top: 65px;
    margin-right: 29px;
    margin-left: 0px;
    margin-bottom: 20px;
    border-radius: 15px;
}

.recipeintro-images{
   display: none;
}

.recipe-intro{
    margin-top: 120px;
    padding-top: 80px;
    margin-left: 30px;
    margin-bottom: 50px;
    display: grid;
    grid-template-columns: 1fr;
    column-gap: 80px;
    row-gap: 1em;
}

.recipe_role{
    background-color: rgb(180 236 154/ 65%);
    padding: 10px;
    border-radius: 19px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
}

.Process{
    padding: 10px;
}

.green-bg{
    background-color: rgb(180 236 154/ 65%);
    padding: 20px;
    margin-bottom: 50px;
    border-radius: 19px;
}

.Recipe_wf{
    position: relative;
    padding-bottom: 820px;
}

.wf_bg{
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 1;
}

.wf_info{
    position: absolute;
    padding-left: 0px;
    top: 10px;
    left: 50px;
    margin-bottom: 100px;
    z-index: 3;
}

.Recipe-video{
    margin-left: 3%;
    width: 280px;
    height: 245px;
}

.decorator{
    width: 60%;
}

 /* ==============================
Project 2 TrailHigh 
================================= */

.light-bg{
    background-color: #c4cac1;
    padding: 20px;
    margin-bottom: 50px;
    border-radius: 19px;
}

 /* ==============================
Project 3 Furnest 
================================= */

.pink-bg{
    background-color: rgb(223 161 161/ 47%);
    padding: 10px;
    color: #61548d;
}

.Pinky-bg{
    background-color: rgb(223 161 161/ 47%);
    padding: 20px;
    margin-bottom: 50px;
    border-radius: 19px;
}

/* ==============================
Project 6 Chatbox
================================= */

.Worktitle{
    margin-top: 100px;
}

.Awards{
    margin-top: 50px;
    margin-bottom: 40px;
}

.Designrush{
    width: 10%;
    height: auto;
}

.Chatbox-video{
    margin-left: 5%;
    margin-top: 0px;
    margin-bottom: 40px;
    width: 280px;
    height: 245px;
}

footer{
    display: inline-block;
    width: 100%;
    box-sizing: border-box;
    margin-top: 0px;
    padding-top: 0px;
    background: repeat;
    background-color: #f2f2f2;
    bottom: 0px;
font-family: 'Nunito', sans-serif;
font-size: 15px;
}
        
.footer-container{
    margin: 0px;
    padding: 0 2px;
    box-sizing: border-box;
    display: block;
    text-align: center;
}

.cta{
    margin: 5px 0 5px;
    box-sizing: border-box;
    display: block;
}

.social{
    margin-top: 25px;
    box-sizing: border-box;
    display: block;
}

.social > a {
    margin: 20px;
}
  

/*----------------------------------------------------------*/

/* ==============================
Medium devices (640px and larger)
================================= */
@media only screen and (min-width: 640px) {

    * {
        box-sizing: border-box;
    }

    body{
        display: block;
        box-sizing: border-box;
        margin: 16px;
        font-size: 15px; /* Sets the font size to 15px */
        font-weight: 700; /*Sets the font weight to 700 */
        line-height: 1.2; /* Sets the line-height to 1.2 * the font-size */
    }
    
    header{
        height: 120px;
        font-size: 15px;
        font-weight: 800;
        text-align: unset;
        margin: 0px 0 10px;
    }

    nav {
        width: auto;
        float: right;
        margin-top: 1px;
        margin-right: 16px;
    }

    nav > ul {
        margin: 0px 0;
        padding-top: 50px;
    }
   
.navtoggle, .navtoggle.responsive{
    position: relative;
}

.navtoggle.responsive nav {
    padding: 0;
}

nav > ul > li {
    display: inline-block;
}

.navtoggle.responsive li {
    display: block;
    padding: 20px 0;
    border-bottom: none;
}

.navtoggle li:not(:last-child) {
    display: inline-block;
}

.navtoggle li:last-child {
    display: none;
}

   .logo{
    width: 24%;
    height: auto;
    padding-top: 24px;
    display: block;
    margin: 0 10px;
}


h1{
    font-size: 40px;
    font-weight: 800;
    color: #425058;
    margin-block-start: 0.67em;
    margin-block-end: 0.67em;
}

h2{
    font-size: 32px;
    font-weight: 800;
    color: #425058;
}

h3{
    font-size: 28px;
    font-weight: 700;
}

h4{
    font-size: 24px;
    font-weight: 800;
}

h6{
    font-size: 20px;
    font-weight: 700;
}

p{
    font-size: 17px;
}

main{
    display: block;
    box-sizing: border-box;
    align-content: center;
}

    .main-container {
        display: block;
        max-width: 640px;
        padding: 0;
        margin: 0 auto;
        box-sizing: border-box;
        }

     .left_column{
        margin-top: 150px;
        margin-left: 5px;
        padding-left: 5px;
        padding-right: 10px;
        width: 80%;
        height: auto;
    }

    .center_column{
        width: 130%;
        margin-top: 140px;
        display: block;
        margin-left: auto;
        margin-right: 90px;
    }

    .right_column{
        margin-top: 150px;
    }

    .hero{
        padding-left: 0px;
        padding-right: 0px;
    }

    .pstar_1, .pstar_2{
        display: none;
    }

    .explore{
        margin-left: 40px;
        }

        .magic-quote{
            font-family:'Poppins',sans-serif;
            font-size: 19px;
            color: #586469;
            text-align: center;
            margin-left: auto;
            margin-right: auto;
        }
        
        .projects{
            text-align: left;
            margin-left: auto;
            padding-left: 0px;
            margin-top: 35px;
            padding-top: 15px;
            margin-bottom: 15px;
            padding-bottom: 5px;
        }

        .grey-bg{
            padding: 20px;
        }

        .wrapper-2 {
            row-gap: 25px;
          }

        .recipeimage{
            padding-top: 10px;
            width: 100%;
        }  

        .trailimage{
            padding-top: 10px;
        }

        .furnestimage{
            padding-top: 10px;
        }

        .prolificimage{
            padding-top: 10px;
        }

        .noteimage{
            padding-top: 10px;
        }

        .chatboximage{
            padding-top: 10px;
        }

        .paintbutton{
            display: inline-block;
            margin-top: 50px;
            margin-bottom: 50px;
            margin-left: 45%;
            margin-right: auto;
            align-items: center;
  }

  /* ==============================
About Me (640px and larger)
================================= */

.aboutinfo1{
    margin-top: 80px;
}

.aboutinfo{
    margin-top: 120px;
}

  .field1{
    width: 55%;
    height: auto;
    display: block;
    padding-bottom: 10px;
    margin-left: auto;
    margin-right: auto;
    align-items: center;
    margin-bottom: 20px;
}

.field_wrapper{
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    grid-column: 1/2;
    column-gap: 5px;
    row-gap: 2em; 
    margin-left: auto;
    margin-bottom: 10px;
}

.field4{
    width: 50%;
    height: auto;
    display: block;
    padding-bottom: 10px;
    margin-left: auto;
    margin-right: auto;
    align-items: center;
    margin-bottom: 20px;
}

.field5{
    width:50%;
    height: auto;
    display: block;
    padding-bottom: 10px;
    left: 0px;
    float: right;
    margin-right: 10px;
    margin-bottom: 20px;
}

.cv_button{
    margin-top: 25px;
    margin-left: 35%;
margin-right: auto;
align-items: center;
margin-bottom: 15px;
}

/* ==============================
Project 1 Fettle Relish (640px and larger)
================================= */

.title{
    position: relative;
    padding-bottom: 190px;
}

.imagefr1{
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 1;
}

.imagefr2{
    position: absolute;
    padding-left: 5px;
    top: 20px;
    left: 10px;
    z-index: 3;
}

.leaves{
    width: 24%;
    float: right;
    left: 0px;
    margin-top: 80px;
    padding-top: 80px;
    margin-right: 50px;
    margin-left: 0px;
    margin-bottom: 20px;
}

.recipeintro-images{
   display: none;
}

.recipe-intro{
    margin-top: 200px;
    padding-top: 80px;
    margin-left: 30px;
    display: grid;
    grid-template-columns: 1fr;
    column-gap: 80px;
    row-gap: 1em;
}

.recipe_role{
    background-color: rgb(180 236 154/ 65%);
   padding: 15px; 
}

.Recipe_wf{
    position: relative;
    padding-bottom: 1520px;
}

.Recipe-video{
    margin-left: 14%;
    width: 520px;
    height: 455px;
}

 /* ==============================
Project 2 TrailHigh (640px and larger)
================================= */

.light-bg{
    padding: 30px;
}

 /* ==============================
Project 6 Chatbox (640px and larger)
================================= */

.Worktitle{
    margin-top: 140px;
}

.Chatbox-video{
    margin-left: 10%;
    margin-top: 0px;
    width: 520px;
    height: 455px;
}

  footer{
    display: inline-block;
    width: 100%;
    box-sizing: border-box;
    margin-top: 0px;
    padding-top: 0px;
    background: repeat;
    background-color: #f2f2f2;
    bottom: 0px;
font-family: 'Nunito', sans-serif;
font-size: 17px;
}

.footer-container{
padding: 0 10px;
box-sizing: border-box;
display: block;
text-align: center;
}

.cta{
margin: 5px 0 5px;
box-sizing: border-box;
display: block;
}

.social{
    margin-top: 25px;
    box-sizing: border-box;
    display: block;
}

.social > a {
    margin: 20px;
}

}

/*----------------------------------------------------------*/

  /* ==============================
Large devices (1024px or larger)
================================= */
@media only screen and (min-width: 1024px) {

    * {
        box-sizing: border-box;
    }

    body{
        display: block;
        box-sizing: border-box;
        margin: 16px;
        font-size: 19px; /* Sets the font size to 19px */
        font-weight: 700; /*Sets the font weight to 700 */
        line-height: 1.9; /* Sets the line-height to 1.9 * the font-size */
    }


    header{
        font-size: 19px;
        font-weight: 800;
    }

    .logo{
        padding-top: 15px;
    }

    nav {
        width: auto;
        float: right;
        margin-top: 0px;
        margin-right: 16px;
    }

    .navtoggle li:not(:last-child) {
        display: inline-block;
    }

    .navtoggle li:last-child{
        display: none;
    }

    nav > ul {
        padding-top: 50px;
    }

    nav > ul > li {
        display: inline-block;
    }

        h1{
            font-size: 60px;
            font-weight: 800;
            color: #425058;
            margin-block-start: 0.67em;
            margin-block-end: 0.67em;
        }
        
        h2{
            font-size: 2.21em;
            font-weight: 800;
            color: #425058;
        }
        
        h3{
            font-size: 2em;
            font-weight: 700;
        }
        
        h4{
            font-size: 1.52em;
            font-weight: 800;
        }
        
        h6{
            font-size: 1.26em;
            font-weight: 700;
        }

        p{
            font-size: 19px;
        }

        main{
            display: block;
            box-sizing: border-box;
            align-content: center;
            margin-left: auto;
            margin-right: auto;
        }
    
        .main-container {
            display: block;
            max-width: 1010px;
            padding: 0;
            margin: 0 20px 0 20px;
            box-sizing: border-box;
            font-size: 19px;
            }

        .wrapper-2 {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
           column-gap: 30px;
            row-gap: 20px;
          }
          
          
          .wrapper-3 {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
          column-gap: 20px;
            row-gap: 15px;
          }

          .envelop-2{
              display: grid;
              grid-template-columns: 400px 1fr;
              grid-area: 1/3 ;
              column-gap: 20px;
              row-gap: 50px;
          }
          
          .left_column{
            margin-top: 120px;
            margin-left: 60px;
            width: 50%;
            height: auto;
        }
        
        .center_column{
            width: 80%;
            margin-top: 110px;
            padding-left: 20px;
            display: block;
            
        }
        
        .right_column{
        width: 20%; 
        margin-top: 130px; 
        margin-left: auto;
        padding-left: 20px;
        }
            

.explore{
    position: relative;
    float: left;
    margin-top: 60px;
    margin-bottom: 10px;
    margin-right: 0px;
    padding-left: 60px;
    margin-left: 60px;
    text-align: center;
    }
    

.pstar_2{
    position: absolute;
    float:left;
    width: 15%;
    height: auto;
    margin-top: 20px;
    padding-top: 0px;
    margin-bottom: 0px;
    margin-right: 0px;
    margin-left: 0px;
}
.pstar_1{
    position: absolute;
    float: left;
    width: 20%;
    height: auto;
    margin-top: 20px;
    padding-top: 0px;
    margin-bottom: 0px;
    margin-left: 30px;
}

    .mockup_f{
        float: left;
        width: 110%;
        height: auto;
        margin-top: 50px;
        margin-left: 0px;
        padding-left: 0px;
        margin-bottom: 5px;
        padding-right: 40px;
        margin-right: 100px;
    }

    .quote{
        text-align: center;
        display: block;
        box-sizing: border-box;
        margin-top: 10px;
        margin-left: 40px;
        margin-right: 40px;
        padding-top: 5px;
        padding-left: 10px;
        padding-right: 10px;
    }

    .projects{
        margin-top: 150px;
        margin-bottom: 60px;
        padding-top: 150px;
        padding-left: 30px;
        padding-right: 30px;
        border-bottom: 80px;
         padding-bottom: 30px;
        }

        .grey-bg{
            padding: 10px;
        }

        .paintbutton{
            display: inline-block;
            margin-top: 30px;
            margin-bottom: 80px;
            margin-left: 45%;
            margin-right: auto;
            align-items: center;
        }

 /* ==============================
About Me (1024px and larger)
================================= */

.aboutme{
    margin-top: 80px; 
    padding-top: 80px; 
    margin-bottom: 20px; 
    padding-bottom: 10px; 
    margin-left: 30px;
}

.aboutinfo1{
    margin-top: 65px;
}

.aboutinfo{
    margin-top: 160px;
    padding: 20px;
    display: inline-block;
box-sizing: border-box;
text-align: left;
align-content: center;
margin-left: auto;
margin-right: auto;
}

.field1{
    width: 45%;
    height: auto;
    display: block;
    padding-bottom: 10px;
    margin-left: auto;
    margin-right: auto;
    align-items: center;
    margin-bottom: 20px;
}

.field_wrapper{
    width: 80%;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    grid-column: 1/2;
    column-gap: 5px;
    row-gap: 2em; 
    margin-left: auto;
    margin-bottom: 10px;
}

.field4{
    width: 40%;
    height: auto;
    display: block;
    padding-bottom: 10px;
    margin-left: auto;
    margin-right: auto;
    align-items: center;
    margin-bottom: 20px;
}

.field5{
    width: 40%;
    height: auto;
    display: block;
    padding-bottom: 10px;
    left: 0px;
    float: right;
    margin-right: 10px;
    margin-bottom: 20px;
}

.cv_button{
    margin-top: 30px;
    margin-left: 38%;
margin-right: auto;
align-items: center;
margin-bottom: 15px;
}

 /* ==============================
Project 1 Fettle Relish (1024px and larger)
================================= */

.title{
    position: relative;
    padding-bottom: 400px;
}

.imagefr1{
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 1;
}

.imagefr2{
    position: absolute;
    padding-left: 5px;
    top: 40px;
    left: 50px;
    z-index: 3;
}

.leaves{
    width: 24%;
    float: right;
    left: 0px;
    margin-top: 70px;
    padding-top: 100px;
    margin-right: 0px;
    margin-left: 0px;
    margin-bottom: 20px;
}

.recipeintro-images{
    display: block;
    width: 100%;
    height: auto;
}

.recipe-intro{
    margin-top: 130px;
    padding-top: 250px;
    margin-left: 30px;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    column-gap: 60px;
    row-gap: 1em;
}

.recipe_role{
    background-color: rgb(180 236 154/ 65%);
    padding: 30px;
} 

.Process{
    padding: 50px;
}

.Recipe_wf{
    position: relative;
    padding-bottom: 1980px;
}

.mu{
    width: 120%;
}

.Recipe-video{
    margin-left: 3%;
    width: 800px;
    height: 700px;
}

.decorator{
    width: 80%;
}

 /* ==============================
Project 2 TrailHigh (1024px and larger)
================================= */

.light-bg{
    padding: 30px;
}


/* ==============================
Project 5 JotItDown (1024 and larger)
================================= */

.textcolumn-2{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
   column-gap: 5px;
}

.textcolumn-3{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 20px;
}


 /* ==============================
Project 6 Chatbox (1024px and larger)
================================= */

.Worktitle{
    margin-top: 140px;
}

.Chatbox-video{
    margin-left: 8%;
    width: 800px;
    height: 700px;
}

        footer{
            display: inline-block;
            width: 100%;
            box-sizing: border-box;
            margin-top: 85px;
            padding-top: 0px;
            background: repeat;
            background-color: #f2f2f2;
            bottom: 0px;
        font-family: 'Nunito', sans-serif;
        }

.footer-container{
    padding: 0 60px 0 60px;
    box-sizing: border-box;
    display: block;
    text-align: center;
}

.cta{
    margin: 30px 0 30px;
    box-sizing: border-box;
    display: block;
}

.social{
    margin-top: 25px;
    box-sizing: border-box;
    display: block;
}

.social > a {
    margin: 20px;
}
  
  }
    
/*----------------------------------------------------------*/

/* ==============================
X-large devices (1200px or larger)
================================= */
@media only screen and (min-width: 1200px) {

    * {
        box-sizing: border-box;
    }
    
    body{
        display: block;
        box-sizing: border-box;
        margin: 16px;
        font-size: 19px; /* Sets the font size to 19px */
        font-weight: 700; /*Sets the font weight to 700 */
        line-height: 1.9; /* Sets the line-height to 1.9 * the font-size */
        -webkit-text-size-adjust: 100%;
    }
    
    header{
        margin: 0px;
       position: fixed;
       z-index: 99;
       width: 100%;
       height: 160px;
       padding: 10px 0 8px;
       font-weight: 800;
       font-size: 19px;/* Sets the font size to 19px */
       }
    
       .logo{
        max-width: 344px;
        padding-top: 10px;
        display: block;
        margin: 0;
        margin-right: 20px;
    }


    nav {
        width: auto;
        float: right;
        margin-top: 0px;
        margin-right: 32px;
    }
    

        .navtoggle li:not(:last-child) {
            display: inline-block;
        }
    
        .navtoggle li:last-child{
            display: none;
        }

        nav > ul > li {
            display: inline-block;
        }
    

        h1{
            font-size: 60px;
            font-weight: 800;
            color: #425058;
            margin-block-start: 0.67em;
            margin-block-end: 0.67em;
        }
        
        h2{
            font-size: 2.21em;
            font-weight: 800;
            color: #425058;
        }
        
        h3{
            font-size: 2em;
            font-weight: 700;
        }
        
        h4{
            font-size: 1.52em;
            font-weight: 800;
        }
        
        h6{
            font-size: 1.26em;
            font-weight: 700;
        }

        p{
            font-size: 19px;
        }

        main{
            display: block;
            box-sizing: border-box;
            background-color: #fff;
            font-family: 'Nunito',sans-serif;
            font-size: 19px;
            line-height: normal;
            color: #425058;
            }
        
        .main-container {
            display: block;
            max-width: 1200px;
            padding: 0;
            margin: 0 auto;
            box-sizing: border-box;
            }


.wrapper-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
   column-gap: 40px;
    row-gap: 15px;
  }
  
  
  .wrapper-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  column-gap: 20px;
    row-gap: 15px;
  }

  .envelop-2{
    display: grid;
    grid-template-columns: 400px 1fr;
    grid-area: 1/3 ;
    column-gap: 40px;
    row-gap: 50px;
}
            
            .left_column{
                margin-top: 150px;
                margin-left: 60px;
                width: 60%;
                height: auto;
            }
            
            .center_column{
                width: 92%;
                margin-top: 140px;
                padding-left: 10px;
                display: block;
                
            }
            
            .right_column{
            width: 20%; 
            margin-top: 160px; 
            margin-left: auto;
            padding-left: 20px;
            }

            .hero{
                padding-left: 10px;
                padding-right: 10px;
                text-align: center;
            }
    
.pstar_2{
    float:left;
    width: 15%;
    height: auto;
    margin-top: 20px;
    padding-top: 0px;
    margin-bottom: 0px;
    margin-right: 60px;
    margin-left: 0px;
}

.pstar_1{
    float: left;
    width: 10%;
    height: auto;
    margin-top: 20px;
    padding-top: 0px;
    margin-bottom: 0px;
    margin-left: 30px;
}

.pstar_4{
    float: left;
    width: 5%;
    height: auto;
    margin-top: 15px;
    padding-top: 5px;
    margin-bottom: 0px;
    margin-left: 30px;
}

.pstar_3{
    float: none;
    width: 5%;
    height: auto;
    margin-top: 5px;
    padding-top: 0px;
    margin-bottom: 0px;
    margin-left: 90px;
}

.explore{
    float: right;
    margin-top: 100px;
    margin-bottom: 10px;
    margin-right: 0px;
    padding-left: 80px;
    margin-left: 80px;
    text-align: center;
    }
    
    .mockup_f{
        float: left;
        width: 90%;
        height: auto;
        margin-top: 50px;
        margin-left: 0px;
        padding-left: 0px;
        margin-bottom: 5px;
        padding-right: 40px;
        margin-right: 180px;
    }

    .quote{
        text-align: center;
        display: block;
        box-sizing: border-box;
        margin-top: 10px;
        margin-left: 40px;
        margin-right: 40px;
        padding-top: 5px;
        padding-left: 10px;
        padding-right: 10px;
    }

    .projects{
        margin-top: 150px;
        margin-bottom: 60px;
        padding-top: 150px;
        padding-left: 30px;
        padding-right: 30px;
        border-bottom: 80px;
         padding-bottom: 30px;
        }
        
        .grey-bg{
            padding: 15px;
        }

        .paintbutton{
            display: inline-block;
            margin-top: 30px;
            margin-bottom: 80px;
            margin-left: 45%;
            margin-right: auto;
            align-items: center;
        }

 /* ==============================
About Me (1200px and larger)
================================= */

.aboutme{
    margin-top: 90px; 
    padding-top: 80px; 
    margin-bottom: 20px; 
    padding-bottom: 10px; 
    margin-left: 30px;
}

.aboutinfo1{
    margin-top: 60px;
    padding: 50px;
    display: block;
    box-sizing: border-box;
    text-align: left;
    align-content: center;
    margin-left: auto;
    margin-right: auto;
}


.aboutinfo{
    margin-top: 180px;
    padding: 50px;
    display: block;
    box-sizing: border-box;
    text-align: left;
    align-content: center;
    margin-left: auto;
    margin-right: auto;
}


.aboutskills{
    margin-top: 0px;
    padding: 15px;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    grid-column: 1/2;
    column-gap: 40px;
    row-gap: 2em; 
}

.field1{
    width: 50%;
    height: auto;
    display: block;
    padding-bottom: 10px;
    margin-left: auto;
    margin-right: auto;
    align-items: center;
    margin-bottom: 20px;
}

.field_wrapper{
    width: 90%;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    grid-column: 1/2;
    column-gap: 5px;
    row-gap: 2em; 
    margin-left: auto;
}

.field4{
    width: 45%;
    height: auto;
    display: block;
    padding-bottom: 10px;
    margin-left: auto;
    margin-right: auto;
    align-items: center;
    margin-bottom: 20px;
}

.field5{
    width: 45%;
    height: auto;
    display: block;
    padding-bottom: 10px;
    left: 0px;
    float: right;
    margin-right: 10px;
    margin-bottom: 50px;
}

        .cv_button{
            margin-top: 30px;
            margin-left: 45%;
            margin-bottom: 30px;
            margin-right: -50%;
        }

 /* ==============================
Project 1 Fettle Relish (1200px and larger)
================================= */

.title{
    position: relative;
    padding-bottom: 480px;
}

.imagefr1{
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 1;
}

.imagefr2{
    position: absolute;
    padding-left: 5px;
    top: 40px;
    left: 50px;
    z-index: 3;
}

.leaves{
    width: 24%;
    float: right;
    left: 0px;
    margin-top: 110px;
    padding-top: 130px;
    margin-right: 0px;
    margin-left: 0px;
    margin-bottom: 20px;
}

.recipeintro-images{
    display: block;
    width: 100%;
    height: auto;
}


.recipe_role{
    background-color: rgb(180 236 154/ 65%);
    padding: 30px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
}

.recipe-intro{
    margin-top: 200px;
    padding-top: 250px;
    margin-left: 30px;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    column-gap: 40px;
    row-gap: 1em;
}

.Process{
    padding: 30px;
}

.green-bg{
    background-color: rgb(180 236 154/ 65%);
    padding: 20px;
    margin-bottom: 50px;
    border-radius: 19px;
}

.wf_bg{
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 1;
}

.wf_info{
    position: absolute;
    padding-left: 5px;
    top: 100px;
    left: 50px;
    z-index: 3;
}


.Recipe_wf{
    position: relative;
    padding-bottom: 2720px;
}

.Recipe-video{
    margin-left: 5%;
    width: 1000px;
    height: 875px;
}

 /* ==============================
Project 2 TrailHigh (1200px and larger)
================================= */

.light-bg{
    padding: 20px;
}

 /* ==============================
Project 3 Furnest (1024px and larger)
================================= */

.Pinky-bg{
    background-color: rgb(223 161 161/ 47%);
    padding: 20px;
    margin-bottom: 50px;
    border-radius: 19px;
}

/* ==============================
Project 5 JotItDown (1200 and larger)
================================= */

.textcolumn-2{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
   column-gap: 5px;
}

.textcolumn-3{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 20px;
}

    

/* ==============================
Project 6 Chatbox (1200px and larger)
================================= */

.Worktitle{
    margin-top: 180px;
}

.Designrush{
    width: 10%;
    height: auto;
}

.Chatbox-video{
    width: 1000px;
    height: 875px;
}

footer{
    display: inline-block;
    width: 100%;
    box-sizing: border-box;
    margin-top: 100px;
    padding-top: 0px;
    background: repeat;
    background-color: #f2f2f2;
    bottom: 0px;
font-family: 'Nunito', sans-serif;
font-size: 15px;
}

.footer-container{
    padding: 0 120px 0 120px;
    box-sizing: border-box;
    display: block;
    text-align: center;
}

.cta{
    margin: 35px 0 20px;
    box-sizing: border-box;
    display: block;
}

.social{
    margin-top: 25px;
    box-sizing: border-box;
    display: block;
}

.social > a {
    margin: 20px;
}


    }