
#body {
    font-family: Arial, sans-serif;
    background-color: #003333;
    text-align: center;
    padding: 20px;
    margin:20px;
}

img {
    max-width: 100%;
    height: auto;
}

/* Default styles (Desktop/Laptop) */

body {
    font-family: Arial, sans-serif;
    background-color: #003333;
    text-align: center;
    padding: 20px;
}

/* General responsive adjustments */
img {
    max-width: 100%;
    height: 100%;
}

/* Tablet screens */
@media (max-width: 768px) {
    #navSec {
        font-size: 20px;
        text-align: center;

    }

    .titlePage1 {
        font-size: 20px;
        
    }

    #aboutMe {
        flex-direction: column;
        text-align: center;
        font-size: 20px;
    }

    #selfie {
        width: 100%;
        height: auto;
        margin: 0 auto;
    }

    #aboutMeP {
        font-size: 10px;
        
    }

    #gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    .headings {
        font-size: 20px;
    }

    .paragraphs {
        font-size: 10px;
    }
}

/* Mobile screens */
@media (max-width: 480px) {
    #navSec {
        font-size: 15px;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    .titlePage1 {
        font-size: 20px;
        padding: 10px;
    }

    #fiverr {
        font-size: 10px;
        
    }

    #aboutMe {
    
        font-size: 20px;
       
    }

    #selfie {
        width: 100%;
    }

    #aboutMeP {
        font-size: 10px;
    }

    #gallery {
        grid-template-columns: 1fr;
        width:100%;
        height:auto;
    }

    .image_descriptions {
        font-size: 5px;
    }

    .viewPort_folio {
       
        font-size: 10px;
    }

    #submitButton {
        font-size: 10px;
        
    }
}



/* NAVIGATION SECTION */
#navSec {
    font-size: 30px;
    text-align: left;
    margin-left: 0px;
    background-color:  #003333;
    border: solid;
    border-radius: 20px;

}
     a:link { /* Unvisited link*/
        color: white;
        text-decoration: none;
        text-shadow: 1px 1px 1px black;
    }

     a:visited {
        color: white;
        text-shadow: 2px 2px 2px black;
    }

        a:hover {
        color: #fd01a9;
        text-shadow: 1px 1px 1px white;
    }

        a:active {
        color: #f991d6;
        text-shadow: 1px 1px 1px black;
    }





                    
/*THE NIFTY PYTHON | WEBSIDE DESIGN| */
    
.titlePage1 { 
    /* font */
    text-align: right;
    font-size: 50px;
    font-family: "fantasy" , times new roman;
    text-shadow: 2px 2px 4px white;                   /* @import url('hhttps://fonts.google.com/specimen/Playwrite+AU+SA');*/
    

    /* color */
    color: black;
    background-color:#027c68;
    


    /* border */
    border: inset #b0e892;
    border-width: 20px;
    border-heigth: 20px;
    border-radius: 100px;
    border-shadow: 2px 2px 2px;


    /* layout */ 
   margin: 20px;
   padding:30px;
  }

  /* "Building Your Online Presence, Pixel by Pixel" */

    #heading { 
     /* font */
    text-align: center;
    font-style: italic; 
    font-width: 10px;
    font-size: 20px;

    /* color */ 
    color: white;

    /* layout */ 
    margin: 10px;
    padding: 10px;


}

      
    /* CTA BUTTON - VIEW MY FIVERR PROFILE */

.fiverrLink:hover{
    background-color: #fd01a9;
    color: white;
    transition: 0.3s; 
}
    .fiverrLink:active {    
        background-color: #fd01a9;
        color: white;
        transition: 0.3s;a }

.fiverrLink:visited {
        background-color: #fd01a9;
        color: white;
        transition: 0.3s;
    }

    .viewPort_folio:hover {
    background-color: #fd01a9;
    color: white;
    transition: 0.3s;
}
    .viewPort_folio {  /*button*/
     /* font settings */
     text-align: center;
     

     /* border settings */
     border-radius: 15px;


     /* color settings */
     background-color: #9FE2BF;
     color: black;

 
     /* layout settings */ 
     margin: 10px;
     padding: 10px;
}

    .fiverrLink { /*link*/
    text-decoration:none;
    text-shadow: 2px 2px 2px black;

        /* layout settings */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 10vh;
    margin: 10px;
    padding: 10px;

}

#fiverr {
    font-size: 30px;
    color: black;
    text-width: small;
}



    #viewPortfolio {
    /* font settings */
    font-size: 30px;
}

  
    /*Specializing in custom web design and development to help small businesses stand out*/
    #summary {
        /*font settings*/
        text-align: center;
        font-size: 20px;
    
        /*color settings */
        color: white;

        /*display settings */
        marigin: 20px;
        padding: 20px;
    }








/* ----------------ABOUT ME -----------------------------------*/

    #boutMe {  /* about me heading*/
        
        font-size: 50px;

        color: white;
        background-color: #027c68;
    
        text-shadow: 1px 1px 1px black;
        
        border: inset 10px black; 
        margin: 20px;
        padding: 20px;

    }
    
    #aboutMe { /* container: paragraph & photo */
    
    background-color: #9FE2BF;
    text-align: left; /* Align text to the left */
    margin: 20px;
    padding: 20px;
    display: flex; /* Use flexbox */
    flex-wrap: wrap; /* Ensure content wraps on smaller screens */
    align-items: center; /* Vertically align items */
    gap: 30px; /* Space between image and text */
}

#selfie { /* Image styling */
    width: 100%;
    height: 0 auto;
    margin: 0 auto;
    border-radius: 100px; /* Add rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Add a subtle shadow */
}

#aboutMeP { /* paragraph*/
    font-size: 20px;
    padding: 10px;
    line-height: 1.6; /* Improve text readability */
    color: #003333; /* Darker text color for contrast */
    margin: 0; /* Remove extra margins */
    flex: 1; /* Allow text to take up remaining space */
}

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



    /* PORTFOLIO */


    #pfH {   /* PORTFOLIO - HEADING */
        font-size: 50px;
        color: white;
        background-color: #027c68;

        border: inset 10px #b0e892;
        padding: 20px;
        margin: 20px;

  }


    #pfP { /* PORTFOLIO - PARAGRAPH*/
        font-size: 20px;
        color: white;
 }

 #gallery-container { /* flex container*/ 
    display: flex;
    justify-content: center; /* Center the gallery horizontally */
    align-items: center; /* Center the gallery vertically */
    height: 0 auto; /* Adjust height as needed */
    width: 100%;
    padding: 20px; /* Space around the gallery */
    max-width: none;
}


    #gallery { /*GRID CONTAINER*/
        display: grid;
        grid-template-columns: repeat(4, 1fr); 
        gap: 20px;
        margin: 0 auto;
        height: 0 auto;
        width: 100%;
        max-width: none;
 }
    
    #gallery img {
        width: 100%;
        height: 0 auto;
        object-fit: cover; /* Ensures no distortion or stretching */
        border: 2px solid #b0e892;
        border-radius: 10px;
        cursor: pointer;
        transition: transform 0.3s ease;
 }
    
    #gallery img:hover {
        transform: scale(1.05);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
 }

 .image_descriptions {
    color: white;
    font-size: 20px;
 }


#websiteOverview {
    color: white;
    font-size: 50px;
    text-decoration: underline;
    margin: 20px;
    padding:20px;

}

.websiteOverview_container {
    text-align: left;

}

#explainWebsite {
    color:white;
    font-size:20px;
}


#shroveDescription {
    color: white;
    font-size: 20px;
}


#p1, #p2, #p3, #p4 {
    width: 100%; /* Adjust to fit your layout */
    height: 100%;
    padding: 5px;
 }
 
.headings {
    font-size: 30px;
    color: white;

}

.paragraphs {
    font-size: 15px;
    color: white;
}

#container_list {
    display: grid;
    grid-template-columns: repeat(2, 1fr); 
    padding: 20px;
    margin: 20px;
    gap: 20px;

}




/* CONTACT ME */
   
    #contactMeH { /* heading */

    /*font settings*/ 
    font-size: 50px;
    color: white;
    text-shadow: 4px 4px 5px black;
}


    #contactMeF { /*form*/

    /* font settings */
    text-align: center;
    font-size: 20px;
    
    
    /*color settings */
    color: white;
    /* layout settings */
    

}

#name {
    font-size: 20px;
    color: black;
}
#email{ 
    font-size: 20px;
    color: black;
}
#write2me {
    font-size: 20px;
    color: black;
}

#submitButton {
    font-size: 50px;
    color: black;
    background-color: #b0e892;
    padding: 10px;
    margin: auto;
}

#submitButton:hover {
    color: white;
    background-color: #fd01a9;
}

    #ctct {
    /* border settings */
    border: inset #b0e892;
    border-width: 20px;
    border-heigth: 20px;
    border-radius: 20px;
    border-shadow: 2px 2px 2px;

    /*color settings*/
    background-color: #027c68;

    /*layout settings */
    margin: 20px;
    padding: 20px;
 }


 #services {
    font-size: 50px;
    color: white;
    position: default;
 }

 #services_list {
    font-size: 20px;
    color: white;
 }

/* Style for the Back to Top button */
/* Style for the Back to Top button */
#backToTopBtn {
    
    position: fixed;
    bottom: 20px; /* Distance from the bottom of the screen */
    right: 20px; /* Distance from the right side of the screen */
    background-color: #b0e892; /* Button background color */
    color: black; /* Button text color */
    border: none;
    font-size: 18px;
    cursor: pointer;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Hover effect */
#backToTopBtn:hover {
    background-color: #555; /* Darker background on hover */
}


 #copy_year { 
    font-size: 20px;
    color: white;
 }