*{
    margin: 0;
    padding: 0;
}
body{
    background-color: black;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    overflow-x: hidden;
}
@media screen and (min-width:347px) and (max-width:397px){
    header{
        height: 74px;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    nav{
        height: 70px;
        width: 100%;
        display: flex;
        justify-content: space-evenly;
        align-items: center;
        backdrop-filter: blur(30px);
        position: fixed;
    }
   /* The side navigation menu */
    .sidenav {
        height: 40vh; /* 100% Full-height */
        width: 0; /* 0 width - change this with JavaScript */
        position: fixed; /* Stay in place */
        z-index: 1; /* Stay on top */
        top: 0; /* Stay at the top */
        left: 0;
        background-color: #111; /* Black*/
        overflow-x: hidden; /* Disable horizontal scroll */
        padding-top: 60px; /* Place content 60px from the top */
        transition: 0.5s; /* 0.5 second transition effect to slide in the sidenav */
        margin-left: 40px;
        border-radius: 18px 18px 18px 18px;
        align-content: center;
    }

    /* The navigation menu links */
    .sidenav a {
        padding-top: 10px;
        text-decoration: none;
        font-size: 25px;
        color: #818181;
        display: block;
        transition: 0.3s;
        text-align: center;
    }

    /* When you mouse over the navigation links, change their color */
    .sidenav a:hover {
        color: #ff16f4;
        transition-duration: 300ms
    }

    /* Position and style the close button (top right corner) */
    .closebtn {
        position: absolute;
        top: 0;
        right: 25px;
        font-size: 36px;
        margin-left: 50px;
        color: white;
        border: none;
        background-color: transparent;
        cursor: pointer;
    }

    /* Style page content - use this if you want to push the page content to the right when you open the side navigation */
    #main {
        transition: margin-left .5s;
        padding: 20px;
    }
    .sidemenu>i{
        color: white;
        cursor: pointer;
    }
    .logo{
        font-size: 16px;
        font-weight: 700;
        color: white;
    }
    .nav_links{
        display: none;
    }
    .Resume{
        height: 32px;
        width: 18vw;
        border-radius: 18px 18px 18px 18px;
        display: inline-block;
        text-align: center;
        align-content: center;
        text-decoration: none;
        border: 1px solid #ff16f4;
        background-color: #ff16f4;
        color: black;
        font-weight: 600;
        font-size: 12px;
    }
    .Resume:hover{
        transition-duration: 150ms;
        box-shadow: 0px 0px 18px #ff16f4;
    }
    section{
        height: 4500px;
        width: 100%;
        border: 2px solid white;
        border-top: none;
        border-left: none;
        border-right: none;
    }
    .About{
        height: 800px;
        width: 100%;
        display: grid;
        place-content: center;
        gap: 20px;
    }
    .About_img{
        height: 300px;
        width: 60vw;
    }
    .About_img>img{
        height: 100%;
        width: 100%;
        border-radius: 100px 100px 100px 100px;
    }
    .About_info{
        height: 50vh;
        width: 60vw;
    }
    .name{
        font-size: 24px;
        font-weight: 700;
        color: white;
        text-align: center;
    }
    .job{
        font-size: 26px;
        font-weight: 700;
        color: #ff16f4;
        text-align: center;
    }
    .info{
        height: 19vh;
        width: 100%;
    }
    .info>p{
        color: white;
        font-size: 14px;
        font-weight: 500;
    }
    .profiles{
        text-align: center;
    }
    .github_link{
        font-size: 24px;
        color: white;
    }
    .linkedin_link{
        text-decoration: none;
        font-size: 24px;
        color: #5676ff;
    }
    .x_link{
        text-decoration: none;
        font-size: 24px;
        color: white;
    }
    .download_resume{
        height: 15vh;
        width: 100%;
        align-content: center;
        text-align: center;
        font-size: 14px;
    }
    .download_resume>a{
        height: 50px;
        width: 40vw;
        display: inline-block;
        align-content: center;
        text-align: center;
        background-color: #d100d9;
        border-radius: 10px 10px 10px 10px;
        text-decoration: none;
        color: black;
        font-weight: 600;
        font-size: 12px;
    }
    .download_resume>a:hover{
        transition-duration: 300ms;
        background-color: #ad00b1;
        box-shadow: 0px 0px 18px #ad00b1;
    }
    .tech_stack{
        height: 300px;
        width: 100%;
        align-content: center;
    }
    .tech_stack_heading{
        color: #ff16f4;
        font-weight: 700;
        text-align: center;
        font-size: 30px;
    }
    .stack_div{
        height: 220px;
        width: 100%;
        display: flex;
        justify-content: space-evenly;
        align-items: center;
        flex-wrap: wrap;
    }
    .html,.css,.javascript,.tailwind,.bootstrap,.php,.mysql{
        height: 70px;
        width: 22vw;
        background-color: transparent;
        border-radius: 8px 8px 8px 8px;
        font-size: 11px;
    }
    .html{
        border: 1.5px solid orange;
    }
    .html:hover{
        box-shadow: 0px 0px 20px orange;
        transition-duration: 300ms;
        background-color: #9999993d;
    }
    .html>img{
        height: 20px;
    }
    .html>p{
        color: white;
        font-weight: 600;
    }
    .css{
        border: 1.5px solid blue;
    }
    .css:hover{
        background-color: #9999993d;
        box-shadow: 0px 0px 20px blue;
        transition-duration: 300ms;
    }
    .css>img{
        height: 20px;
    }
    .css>p{
        color: white;
        font-weight: 600;
    }
    .javascript{
        border: 1.5px solid yellow;
    }
    .javascript:hover{
        background-color: #9999993d;
        box-shadow: 0px 0px 20px yellow;
        transition-duration: 300ms;
    }
    .javascript>img{
        height: 22px;
    }
    .javascript>p{
        color: white;
        font-weight: 600;
    }
    .tailwind{
        border: 1.5px solid lightblue;
    }
    .tailwind>img{
        height: 18px;
    }
    .tailwind>p{
        color: white;
        font-weight: 600;
    }
    .tailwind:hover{
        transition-duration: 300ms;
        background-color: #9999993d;
        box-shadow: 0px 0px 20px lightblue;
    }
    .bootstrap{
        border: 1.5px solid #ad00b1;
    }
    .bootstrap:hover{
        background-color: #9999993d;
        box-shadow: 0px 0px 20px #ad00b1;
        transition-duration: 300ms;
    }
    .bootstrap>img{
        height: 20px;
    }
    .bootstrap>p{
        color: white;
        font-weight: 600;
    }
    .php{
        border: 1.5px solid #ff16f4;
    }
    .php:hover{
        transition-duration: 300ms;
        box-shadow: 0px 0px 20px #ff16f4;
        background-color: #9999993d;
    }
    .php>img{
        height: 20px;
    }
    .php>p{
        color: white;
        font-weight: 600;
    }
    .mysql{
        border: 1.5px solid lightskyblue;
    }
    .mysql:hover{
        transition-duration: 300ms;
        box-shadow: 0px 0px 20px lightskyblue;
        background-color: #9999993d;
    }
    .mysql>img{
        height: 22px;
    }
    .mysql>p{
        color: white;
        font-weight: 600;
    }
    .services{
        height: 1000px;
        width: 100%;
        align-content: center;
    }
    .services_heading{
        color: #ff16f4;
        font-weight: 700;
        text-align: center;
        font-size: 34px;
    }
    .my_offer{
        height: 825px;
        width: 100%;
        display: flex;
        justify-content: space-evenly;
        align-items: center;
        flex-wrap: wrap;
    }
    .the_offers{
        height: 180px;
        width: 60vw;
        display: grid;
        place-content: center;
        gap: 10px;
        border-radius: 8px 8px 8px 8px;
    }
    .the_offers:hover{
        transition-duration: 300ms;
        box-shadow: 0px 0px 30px #ff16f4;
    }
    .the_offers>i{
        font-size: 17px;
        color: #ff16f4;
    }
    .the_offers>p{
        font-weight: 600;
        font-size: 16px;
        color: white;
    }
    .the_offers>div{
        width: 50vw;
        font-size: 12px;
        color: white;
    }
    .projects{
        height: 1100px;
        width: 100%;
        align-content: center;
    }
    .projects_heading{
        font-size: 34px;
        color: #ff16f4;
        font-weight: 700;
        text-align: center;
    }
    .projects_div{
        height: 140vh;
        width: 100%;
        display: flex;
        justify-content: space-evenly;
        align-items: center;
        flex-wrap: wrap;
    }
    .projects_div>div{
        height: 400px;
        width: 70vw;
        border: 2px solid #ff16f4;
        text-align: center;
        border-radius: 18px 18px 18px 18px;
    }
    .projects_div>div:hover{
        transition-duration: 300ms;
        box-shadow: 0px 0px 30px #ff16f4;
        background-color: #9999993d;
    }
    .project_name{
        font-size: 20px;
        text-align: center;
        font-weight: 700;
        color: #ff16f4;
    }
    .project_img{
        height: 120px;
        width: 100%;
        border-top-left-radius: inherit;
        border-top-right-radius: inherit;
        border-bottom: 2px solid #ff16f4;
    }
    .project_info{
        height: 13vh;
        color: white;
        border: 1px solid black;
        text-align: center;
        align-content: center;
        font-size: 13px;
    }
    .project_stack{
        height: 13vh;
        display: flex;
        justify-content: space-evenly;
        flex-wrap: wrap;
        color: white;
        margin-top: 4px;
    }
    .project_stack>p{
        width: 18vw;
        height: 25px;
        border: 1px solid #ff16f4;
        align-content: center;
        border-radius: 18px 18px 18px 18px;
        background-color: #ff16f4;
        font-size: 11px;
        box-shadow: 3px 3px 0px white;
        font-weight: 600;
    }
   
    .project_links{
        display: flex;
        justify-content: space-evenly;
        margin-top: 10px;
    }
    .github_repo{
        height: 4vh;
        width: 18vw;
        transition-duration: 300ms;
        text-align: center;
        align-content: center;
        color: black;
        background-color: white;
        text-decoration: none;
        display: inline-block;
        border-radius: 8px 8px 8px 8px;
        border: 1px solid white;
        display: flex;
        align-items: center;
        justify-content: space-evenly;
        font-size: 13px;
        font-weight: 600;
    }
    .github_repo:hover{
        border: 1px solid #b0b0b0;
        background-color: #b0b0b0;
    }
    .demo{
        background-color: #ff16f4;
        color: black;
        display: inline-block;
        width: 15vw;
        height: 4vh;
        text-decoration: none;
        text-align: center;
        align-content: center;
        border-radius: 8px 8px 8px 8px;
        font-weight: 600;
        font-size: 13px;
    }
    .demo:hover{
        transition-duration: 300ms;
        border: 1px solid purple;
        background-color: purple;
    }
    .certifications{
        height: 500px;
        width: 100%;
        align-content: center;
    }
    .certifications_heading{
        color: #ff16f4;
        font-weight: 700;
        font-size: 34px;
        text-align: center;
    }
    .certifications_div{
        height: 60vh;
        width: 100%;
        display: grid;
        place-content: center;
        grid-template-rows: auto auto auto auto;
        gap: 15px;
    }
    .certificates{
        height: 25vh;
        width: 60vw;
        align-content: center;
        border-radius: 10px 10px 10px 10px;
    }
    .certificates:hover{
        transition-duration: 300ms;
        box-shadow: 0px 0px 15px #ff16f4;
    }
    .certificate_name{
        text-align: center;
        color: #d100d9;
        font-weight: 600;
        font-size: 16px;
    }
    .platform{
        text-align: center;
        color: white;
        font-weight: 600;
        font-size: 14px;
    }
    .view_certificate{
        height: 10vh;
        width: 100%;
        text-align: center;
        align-content: center;
    }
    .view_certificate>a{
        text-decoration: none;
        font-weight: 600;
        color: black;
        background-color: #ff16f4;
        display: inline-block;
        text-align: center;
        align-content: center;
        height: 35px;
        width: 18vw;
        border-radius: 10px 10px 10px 10px;
    }
    .view_certificate>a:hover{
        transition-duration: 300ms;
        box-shadow: 0px 0px 15px #ff16f4;
    }
    .contacts{
        height: 600px;
        width: 100%;
        display: grid;
        place-content: center;
    }
    .contacts_heading{
        font-size: 30px;
        font-weight: 700;
        color: #ff16f4;
        text-align: center;
    }
    
    form{
        height: 500px;
        width: 75vw;
        border: 2px solid #ff16f4;
        display: grid;
        place-content: center;
        gap: 20px;
        border-radius: 20px 20px 20px 20px;
    }
    form>p{
        color: white;
        font-size: 20px;
        font-weight: 700;
        text-align: center;
    }
    .fullname,.email{
        height: 60px;
        width: 50vw;
        color: white;
        font-weight: 500;
        font-size: 14px;
    }
    .fullname>input,.email>input{
        height: 30px;
        width: 49vw;
        border-radius: 6px 6px 6px 6px;
        border: 1.5px solid white;
        background-color: transparent;
        margin-top: 10px;
        color: white;
        text-indent: 20px;
    }
    .fullname>input:focus,.email>input:focus{
        outline: 1.5px solid #ff16f4;
    }
    .message{
        height: 20vh;
        width: 50vw;
        align-content: center;
        color: white;
        font-size: 14px;
    }
    .message>textarea{
        height: 75px;
        width: 49vw;
        text-indent: 20px;
        background-color: transparent;
        border-radius: 6px 6px 6px 6px;
        border: 1.5px solid white;
        color: white;
        margin-top: 10px;
    }
    .message>textarea:focus{
        outline: 1.5px solid #ff16f4;
    }
    .submit{
        height: 50px;
        font-size: 18px;
        font-weight: 600;
        border: 1px solid #ff16f4;
        background-color: #ff16f4;
        border-radius: 10px 10px 10px 10px;
        cursor: pointer;
    }
    .submit:hover{
        transition-duration: 300ms;
        background-color: #d100d9;
        border: 1px solid #d100d9;
    }
    footer{
        height: 25vh;
        width: 100%;
        display: grid;
        place-content: center;
    }
    .footer_heading{
        color: #ff16f4;
        font-size: 20px;
        font-weight: 700;
        text-align: center;
    }
    footer>p{
        color: white;
        text-align: center;
        font-size: 14px;
        margin-top: 20px;
    }
    .footer_links{
        margin-top: 20px;
        display: flex;
        justify-content: space-evenly;
        align-items: center;
    }
    .github_footer{
        color: white;
        font-size: 26px;
        text-decoration: none;
    }
    .x_footer{
        color: white;
        font-size: 26px;
        text-decoration: none;
    }
    .linkedin_footer{
        font-size: 26px;
        color: #5676ff;
        text-decoration: none;
    }
    .email_footer{
        font-size: 26px;
        color: orangered;
        text-decoration: none;
    }
}
@media screen and (min-width:398px) and (max-width:448px) and (orientation: portrait){
    header{
        height: 16vh;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    nav{
        height: 8vh;
        width: 100%;
        display: flex;
        justify-content: space-evenly;
        align-items: center;
        backdrop-filter: blur(30px);
        position: fixed;
    }
   /* The side navigation menu */
    .sidenav {
        height: 40vh; /* 100% Full-height */
        width: 0; /* 0 width - change this with JavaScript */
        position: fixed; /* Stay in place */
        z-index: 1; /* Stay on top */
        top: 0; /* Stay at the top */
        left: 0;
        background-color: #111; /* Black*/
        overflow-x: hidden; /* Disable horizontal scroll */
        padding-top: 60px; /* Place content 60px from the top */
        transition: 0.5s; /* 0.5 second transition effect to slide in the sidenav */
        margin-left: 40px;
        border-radius: 18px 18px 18px 18px;
        align-content: center;
    }

    /* The navigation menu links */
    .sidenav a {
        padding-top: 10px;
        text-decoration: none;
        font-size: 25px;
        color: #818181;
        display: block;
        transition: 0.3s;
        text-align: center;
    }

    /* When you mouse over the navigation links, change their color */
    .sidenav a:hover {
    color: #ff16f4;
    transition-duration: 300ms
    }

    /* Position and style the close button (top right corner) */
    .closebtn {
        position: absolute;
        top: 0;
        right: 25px;
        font-size: 36px;
        margin-left: 50px;
        color: white;
        border: none;
        background-color: transparent;
        cursor: pointer;
    }

    /* Style page content - use this if you want to push the page content to the right when you open the side navigation */
    #main {
    transition: margin-left .5s;
    padding: 20px;
    }
    .sidemenu>i{
        color: white;
        cursor: pointer;
    }
    .logo{
        font-size: 16px;
        font-weight: 700;
        color: white;
    }
    .nav_links{
        display: none;
    }
    .Resume{
        height: 4vh;
        width: 18vw;
        border-radius: 18px 18px 18px 18px;
        display: inline-block;
        text-align: center;
        align-content: center;
        text-decoration: none;
        border: 1px solid #ff16f4;
        background-color: #ff16f4;
        color: black;
        font-weight: 600;
        font-size: 13px;
    }
    .Resume:hover{
        transition-duration: 150ms;
        box-shadow: 0px 0px 18px #ff16f4;
    }
    section{
        height: 600vh;
        width: 100%;
        border: 2px solid white;
        border-top: none;
        border-left: none;
        border-right: none;
    }
    .About{
        height: 110vh;
        width: 100%;
        display: grid;
        place-content: center;
        gap: 20px;
    }
    .About_img{
        height: 40vh;
        width: 60vw;
    }
    .About_img>img{
        height: 100%;
        width: 100%;
        border-radius: 100px 100px 100px 100px;
    }
    .About_info{
        height: 50vh;
        width: 60vw;
    }
    .name{
        font-size: 24px;
        font-weight: 700;
        color: white;
        text-align: center;
    }
    .job{
        font-size: 26px;
        font-weight: 700;
        color: #ff16f4;
        text-align: center;
    }
    .info{
        height: 19vh;
        width: 100%;
    }
    .info>p{
        color: white;
        font-size: 14px;
        font-weight: 500;
    }
    .profiles{
        text-align: center;
    }
    .github_link{
        font-size: 24px;
        color: white;
    }
    .linkedin_link{
        text-decoration: none;
        font-size: 24px;
        color: #5676ff;
    }
    .x_link{
        text-decoration: none;
        font-size: 24px;
        color: white;
    }
    .download_resume{
        height: 15vh;
        width: 100%;
        align-content: center;
        text-align: center;
        font-size: 14px;
    }
    .download_resume>a{
        height: 5vh;
        width: 37vw;
        display: inline-block;
        align-content: center;
        text-align: center;
        background-color: #d100d9;
        border-radius: 10px 10px 10px 10px;
        text-decoration: none;
        color: black;
        font-weight: 600;
        font-size: 13px;
    }
    .download_resume>a:hover{
        transition-duration: 300ms;
        background-color: #ad00b1;
        box-shadow: 0px 0px 18px #ad00b1;
    }
    .tech_stack{
        height: 40vh;
        width: 100%;
        align-content: center;
    }
    .tech_stack_heading{
        color: #ff16f4;
        font-weight: 700;
        text-align: center;
        font-size: 30px;
    }
    .stack_div{
        height: 26vh;
        width: 100%;
        display: flex;
        justify-content: space-evenly;
        align-items: center;
        flex-wrap: wrap;
    }
    .html,.css,.javascript,.tailwind,.bootstrap,.php,.mysql{
        height: 9vh;
        width: 22vw;
        background-color: transparent;
        border-radius: 8px 8px 8px 8px;
        font-size: 12px;
    }
    .html{
        border: 1.5px solid orange;
    }
    .html:hover{
        box-shadow: 0px 0px 20px orange;
        transition-duration: 300ms;
        background-color: #9999993d;
    }
    .html>img{
        height: 3vh;
    }
    .html>p{
        color: white;
        font-weight: 600;
    }
    .css{
        border: 1.5px solid blue;
    }
    .css:hover{
        background-color: #9999993d;
        box-shadow: 0px 0px 20px blue;
        transition-duration: 300ms;
    }
    .css>img{
        height: 3vh;
    }
    .css>p{
        color: white;
        font-weight: 600;
    }
    .javascript{
        border: 1.5px solid yellow;
    }
    .javascript:hover{
        background-color: #9999993d;
        box-shadow: 0px 0px 20px yellow;
        transition-duration: 300ms;
    }
    .javascript>img{
        height: 3.2vh;
    }
    .javascript>p{
        color: white;
        font-weight: 600;
    }
    .tailwind{
        border: 1.5px solid lightblue;
    }
    .tailwind>img{
        height: 3vh;
    }
    .tailwind>p{
        color: white;
        font-weight: 600;
    }
    .tailwind:hover{
        transition-duration: 300ms;
        background-color: #9999993d;
        box-shadow: 0px 0px 20px lightblue;
    }
    .bootstrap{
        border: 1.5px solid #ad00b1;
    }
    .bootstrap:hover{
        background-color: #9999993d;
        box-shadow: 0px 0px 20px #ad00b1;
        transition-duration: 300ms;
    }
    .bootstrap>img{
        height: 3vh;
    }
    .bootstrap>p{
        color: white;
        font-weight: 600;
    }
    .php{
        border: 1.5px solid #ff16f4;
    }
    .php:hover{
        transition-duration: 300ms;
        box-shadow: 0px 0px 20px #ff16f4;
        background-color: #9999993d;
    }
    .php>img{
        height: 3vh;
    }
    .php>p{
        color: white;
        font-weight: 600;
    }
    .mysql{
        border: 1.5px solid lightskyblue;
    }
    .mysql:hover{
        transition-duration: 300ms;
        box-shadow: 0px 0px 20px lightskyblue;
        background-color: #9999993d;
    }
    .mysql>img{
        height: 3vh;
    }
    .mysql>p{
        color: white;
        font-weight: 600;
    }
    .services{
        height: 130vh;
        width: 100%;
        align-content: center;
    }
    .services_heading{
        color: #ff16f4;
        font-weight: 700;
        text-align: center;
        font-size: 34px;
    }
    .my_offer{
        height: 120vh;
        width: 100%;
        display: flex;
        justify-content: space-evenly;
        align-items: center;
        flex-wrap: wrap;
    }
    .the_offers{
        height: 20vh;
        width: 60vw;
        display: grid;
        place-content: center;
        gap: 10px;
        border-radius: 8px 8px 8px 8px;
    }
    .the_offers:hover{
        transition-duration: 300ms;
        box-shadow: 0px 0px 30px #ff16f4;
    }
    .the_offers>i{
        font-size: 20px;
        color: #ff16f4;
    }
    .the_offers>p{
        font-weight: 600;
        font-size: 18px;
        color: white;
    }
    .the_offers>div{
        width: 50vw;
        font-size: 13px;
        color: white;
    }
    .projects{
        height: 156vh;
        width: 100%;
        align-content: center;
    }
    .projects_heading{
        font-size: 34px;
        color: #ff16f4;
        font-weight: 700;
        text-align: center;
    }
    .projects_div{
        height: 140vh;
        width: 100%;
        display: flex;
        justify-content: space-evenly;
        align-items: center;
        flex-wrap: wrap;
    }
    .projects_div>div{
        height: 60vh;
        width: 70vw;
        border: 2px solid #ff16f4;
        align-content: center;
        text-align: center;
        border-radius: 18px 18px 18px 18px;
    }
    .projects_div>div:hover{
        transition-duration: 300ms;
        box-shadow: 0px 0px 30px #ff16f4;
        background-color: #9999993d;
    }
    .project_name{
        font-size: 20px;
        text-align: center;
        font-weight: 700;
        color: #ff16f4;
    }
    .project_img{
        height: 18vh;
        width: 100%;
    }
    .project_info{
        height: 13vh;
        color: white;
        border: 1px solid black;
        text-align: center;
        align-content: center;
        font-size: 13px;
    }
    .project_stack{
        height: 13vh;
        display: flex;
        justify-content: space-evenly;
        flex-wrap: wrap;
        color: white;
        margin-top: 4px;
    }
    .project_stack>p{
        width: 14vw;
        height: 4vh;
        border: 1px solid #ff16f4;
        align-content: center;
        border-radius: 18px 18px 18px 18px;
        background-color: #ff16f4;
        font-size: 11px;
        box-shadow: 3px 3px 0px white;
        font-weight: 600;
    }
   
    .project_links{
        display: flex;
        justify-content: space-evenly;
        margin-top: 10px;
    }
    .github_repo{
        height: 4vh;
        width: 18vw;
        transition-duration: 300ms;
        text-align: center;
        align-content: center;
        color: black;
        background-color: white;
        text-decoration: none;
        display: inline-block;
        border-radius: 8px 8px 8px 8px;
        border: 1px solid white;
        display: flex;
        align-items: center;
        justify-content: space-evenly;
        font-size: 13px;
        font-weight: 600;
    }
    .github_repo:hover{
        border: 1px solid #b0b0b0;
        background-color: #b0b0b0;
    }
    .demo{
        background-color: #ff16f4;
        color: black;
        display: inline-block;
        width: 15vw;
        height: 4vh;
        text-decoration: none;
        text-align: center;
        align-content: center;
        border-radius: 8px 8px 8px 8px;
        font-weight: 600;
        font-size: 13px;
    }
    .demo:hover{
        transition-duration: 300ms;
        border: 1px solid purple;
        background-color: purple;
    }
    .certifications{
        height: 75vh;
        width: 100%;
        align-content: center;
    }
    .certifications_heading{
        color: #ff16f4;
        font-weight: 700;
        font-size: 34px;
        text-align: center;
    }
    .certifications_div{
        height: 60vh;
        width: 100%;
        display: grid;
        place-content: center;
        grid-template-rows: auto auto auto auto;
        gap: 15px;
    }
    .certificates{
        height: 25vh;
        width: 60vw;
        align-content: center;
        border-radius: 10px 10px 10px 10px;
    }
    .certificates:hover{
        transition-duration: 300ms;
        box-shadow: 0px 0px 15px #ff16f4;
    }
    .certificate_name{
        text-align: center;
        color: #d100d9;
        font-weight: 600;
        font-size: 18px;
    }
    .platform{
        text-align: center;
        color: white;
        font-weight: 600;
        font-size: 14px;
    }
    .view_certificate{
        height: 10vh;
        width: 100%;
        text-align: center;
        align-content: center;
    }
    .view_certificate>a{
        text-decoration: none;
        font-weight: 600;
        color: black;
        background-color: #ff16f4;
        display: inline-block;
        text-align: center;
        align-content: center;
        height: 4vh;
        width: 18vw;
        border-radius: 10px 10px 10px 10px;
    }
    .view_certificate>a:hover{
        transition-duration: 300ms;
        box-shadow: 0px 0px 15px #ff16f4;
    }
    .contacts{
        height: 73vh;
        width: 100%;
        display: grid;
        place-content: center;
    }
    .contacts_heading{
        font-size: 30px;
        font-weight: 700;
        color: #ff16f4;
        text-align: center;
    }
    
    form{
        height: 58vh;
        width: 75vw;
        border: 2px solid #ff16f4;
        display: grid;
        place-content: center;
        gap: 20px;
        border-radius: 20px 20px 20px 20px;
    }
    form>p{
        color: white;
        font-size: 20px;
        font-weight: 700;
        text-align: center;
    }
    .fullname,.email{
        height: 8vh;
        width: 50vw;
        color: white;
        font-weight: 500;
        font-size: 14px;
    }
    .fullname>input,.email>input{
        height: 4vh;
        width: 49vw;
        border-radius: 6px 6px 6px 6px;
        border: 1.5px solid white;
        background-color: transparent;
        margin-top: 10px;
        color: white;
        text-indent: 20px;
    }
    .fullname>input:focus,.email>input:focus{
        outline: 1.5px solid #ff16f4;
    }
    .message{
        height: 20vh;
        width: 50vw;
        align-content: center;
        color: white;
        font-size: 14px;
    }
    .message>textarea{
        height: 15vh;
        width: 49vw;
        text-indent: 20px;
        background-color: transparent;
        border-radius: 6px 6px 6px 6px;
        border: 1.5px solid white;
        color: white;
        margin-top: 10px;
    }
    .message>textarea:focus{
        outline: 1.5px solid #ff16f4;
    }
    .submit{
        height: 5vh;
        font-size: 18px;
        font-weight: 600;
        border: 1px solid #ff16f4;
        background-color: #ff16f4;
        border-radius: 10px 10px 10px 10px;
        cursor: pointer;
    }
    .submit:hover{
        transition-duration: 300ms;
        background-color: #d100d9;
        border: 1px solid #d100d9;
    }
    footer{
        height: 25vh;
        width: 100%;
        display: grid;
        place-content: center;
    }
    .footer_heading{
        color: #ff16f4;
        font-size: 20px;
        font-weight: 700;
        text-align: center;
    }
    footer>p{
        color: white;
        text-align: center;
        font-size: 14px;
        margin-top: 20px;
    }
    .footer_links{
        margin-top: 20px;
        display: flex;
        justify-content: space-evenly;
        align-items: center;
    }
    .github_footer{
        color: white;
        font-size: 26px;
        text-decoration: none;
    }
    .x_footer{
        color: white;
        font-size: 26px;
        text-decoration: none;
    }
    .linkedin_footer{
        font-size: 26px;
        color: #5676ff;
        text-decoration: none;
    }
    .email_footer{
        font-size: 26px;
        color: orangered;
        text-decoration: none;
    }
}
@media screen and (min-width:449px) and (max-width:499px) and (min-height:900px) and (max-height:915px){
    header{
        height: 16vh;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    nav{
        height: 10vh;
        width: 100%;
        display: flex;
        justify-content: space-evenly;
        align-items: center;
        backdrop-filter: blur(30px);
        position: fixed;
    }
   /* The side navigation menu */
    .sidenav {
        height: 60vh; /* 100% Full-height */
        width: 0; /* 0 width - change this with JavaScript */
        position: fixed; /* Stay in place */
        z-index: 1; /* Stay on top */
        top: 0; /* Stay at the top */
        left: 0;
        background-color: #111; /* Black*/
        overflow-x: hidden; /* Disable horizontal scroll */
        padding-top: 60px; /* Place content 60px from the top */
        transition: 0.5s; /* 0.5 second transition effect to slide in the sidenav */
        margin-left: 40px;
        border-radius: 18px 18px 18px 18px;
        align-content: center;
    }

    /* The navigation menu links */
    .sidenav a {
        padding: 8px 8px 8px 32px;
        text-decoration: none;
        font-size: 25px;
        color: #818181;
        display: block;
        transition: 0.3s;
        text-align: center;
    }

    /* When you mouse over the navigation links, change their color */
    .sidenav a:hover {
    color: #ff16f4;
    transition-duration: 300ms
    }

    /* Position and style the close button (top right corner) */
    .closebtn {
        position: absolute;
        top: 0;
        right: 25px;
        font-size: 36px;
        margin-left: 50px;
        color: white;
        border: none;
        background-color: transparent;
        cursor: pointer;
    }

    /* Style page content - use this if you want to push the page content to the right when you open the side navigation */
    #main {
    transition: margin-left .5s;
    padding: 20px;
    }
    .sidemenu>i{
        color: white;
        cursor: pointer;
    }
    .logo{
        font-size: 20px;
        font-weight: 700;
        color: white;
    }
    .nav_links{
        display: none;
    }
    .Resume{
        height: 6vh;
        width: 15vw;
        border-radius: 18px 18px 18px 18px;
        display: inline-block;
        text-align: center;
        align-content: center;
        text-decoration: none;
        border: 1px solid #ff16f4;
        background-color: #ff16f4;
        color: black;
        font-weight: 600;
        font-size: 14px;
    }
    .Resume:hover{
        transition-duration: 150ms;
        box-shadow: 0px 0px 18px #ff16f4;
    }
    section{
        height: 800vh;
        width: 100%;
        border: 2px solid white;
        border-top: none;
        border-left: none;
        border-right: none;
    }
    .About{
        height: 160vh;
        width: 100%;
        display: grid;
        place-content: center;
        gap: 20px;
    }
    .About_img{
        height: 75vh;
        width: 60vw;
    }
    .About_img>img{
        height: 100%;
        width: 100%;
        border-radius: 100px 100px 100px 100px;
    }
    .About_info{
        height: 70vh;
        width: 60vw;
    }
    .name{
        font-size: 26px;
        font-weight: 700;
        color: white;
        text-align: center;
    }
    .job{
        font-size: 26px;
        font-weight: 700;
        color: #ff16f4;
        text-align: center;
    }
    .info{
        height: 19vh;
        width: 100%;
    }
    .info>p{
        color: white;
        font-size: 14px;
        font-weight: 500;
    }
    .profiles{
        text-align: center;
    }
    .github_link{
        font-size: 26px;
        color: white;
    }
    .linkedin_link{
        text-decoration: none;
        font-size: 26px;
        color: #5676ff;
    }
    .x_link{
        text-decoration: none;
        font-size: 24px;
        color: white;
    }
    .download_resume{
        height: 15vh;
        width: 100%;
        align-content: center;
        text-align: center;
        font-size: 14px;
    }
    .download_resume>a{
        height: 8vh;
        width: 30vw;
        display: inline-block;
        align-content: center;
        text-align: center;
        background-color: #d100d9;
        border-radius: 10px 10px 10px 10px;
        text-decoration: none;
        color: black;
        font-weight: 600;
        font-size: 13px;
    }
    .download_resume>a:hover{
        transition-duration: 300ms;
        background-color: #ad00b1;
        box-shadow: 0px 0px 18px #ad00b1;
    }
    .tech_stack{
        height: 68vh;
        width: 100%;
        align-content: center;
    }
    .tech_stack_heading{
        color: #ff16f4;
        font-weight: 700;
        text-align: center;
        font-size: 30px;
    }
    .stack_div{
        height: 40vh;
        width: 100%;
        text-align: center;
        align-content: center;
    }
    .html,.css,.javascript,.tailwind,.bootstrap,.php,.mysql{
        height: 16vh;
        width: 18vw;
        background-color: transparent;
        border-radius: 8px 8px 8px 8px;
    }
    .html{
        border: 1.5px solid orange;
    }
    .html:hover{
        box-shadow: 0px 0px 20px orange;
        transition-duration: 300ms;
        background-color: #9999993d;
    }
    .html>img{
        height: 5vh;
    }
    .html>p{
        color: white;
        font-weight: 600;
    }
    .css{
        border: 1.5px solid blue;
    }
    .css:hover{
        background-color: #9999993d;
        box-shadow: 0px 0px 20px blue;
        transition-duration: 300ms;
    }
    .css>img{
        height: 4.5vh;
    }
    .css>p{
        color: white;
        font-weight: 600;
    }
    .javascript{
        border: 1.5px solid yellow;
    }
    .javascript:hover{
        background-color: #9999993d;
        box-shadow: 0px 0px 20px yellow;
        transition-duration: 300ms;
    }
    .javascript>img{
        height: 4.8vh;
    }
    .javascript>p{
        color: white;
        font-weight: 600;
    }
    .tailwind{
        border: 1.5px solid lightblue;
    }
    .tailwind>img{
        height: 4.5vh;
    }
    .tailwind>p{
        color: white;
        font-weight: 600;
    }
    .tailwind:hover{
        transition-duration: 300ms;
        background-color: #9999993d;
        box-shadow: 0px 0px 20px lightblue;
    }
    .bootstrap{
        border: 1.5px solid #ad00b1;
    }
    .bootstrap:hover{
        background-color: #9999993d;
        box-shadow: 0px 0px 20px #ad00b1;
        transition-duration: 300ms;
    }
    .bootstrap>img{
        height: 4.5vh;
    }
    .bootstrap>p{
        color: white;
        font-weight: 600;
    }
    .php{
        border: 1.5px solid #ff16f4;
    }
    .php:hover{
        transition-duration: 300ms;
        box-shadow: 0px 0px 20px #ff16f4;
        background-color: #9999993d;
    }
    .php>img{
        height: 4.5vh;
    }
    .php>p{
        color: white;
        font-weight: 600;
    }
    .mysql{
        border: 1.5px solid lightskyblue;
    }
    .mysql:hover{
        transition-duration: 300ms;
        box-shadow: 0px 0px 20px lightskyblue;
        background-color: #9999993d;
    }
    .mysql>img{
        height: 4.5vh;
    }
    .mysql>p{
        color: white;
        font-weight: 600;
    }
    .services{
        height: 170vh;
        width: 100%;
        align-content: center;
    }
    .services_heading{
        color: #ff16f4;
        font-weight: 700;
        text-align: center;
        font-size: 34px;
    }
    .my_offer{
        height: 150vh;
        width: 100%;
        display: flex;
        justify-content: space-evenly;
        align-items: center;
        flex-wrap: wrap;
    }
    .the_offers{
        height: 30vh;
        width: 60vw;
        display: grid;
        place-content: center;
        gap: 10px;
        border-radius: 8px 8px 8px 8px;
    }
    .the_offers:hover{
        transition-duration: 300ms;
        box-shadow: 0px 0px 30px #ff16f4;
    }
    .the_offers>i{
        font-size: 20px;
        color: #ff16f4;
    }
    .the_offers>p{
        font-weight: 600;
        font-size: 18px;
        color: white;
    }
    .the_offers>div{
        width: 50vw;
        font-size: 13px;
        color: white;
    }
    .projects{
        height: 190vh;
        width: 100%;
        align-content: center;
    }
    .projects_heading{
        font-size: 34px;
        color: #ff16f4;
        font-weight: 700;
        text-align: center;
    }
    .projects_div{
        height: 170vh;
        width: 100%;
        display: flex;
        justify-content: space-evenly;
        align-items: center;
        flex-wrap: wrap;
    }
    .projects_div>div{
        height: 76vh;
        width: 60vw;
        border: 2px solid #ff16f4;
        align-content: center;
        text-align: center;
        border-radius: 18px 18px 18px 18px;
    }
    .projects_div>div:hover{
        transition-duration: 300ms;
        box-shadow: 0px 0px 30px #ff16f4;
        background-color: #9999993d;
    }
    .project_name{
        font-size: 20px;
        text-align: center;
        font-weight: 700;
        color: #ff16f4;
    }
    .project_img{
        height: 26vh;
        width: 100%;
    }
    .project_info{
        height: 13vh;
        color: white;
        border: 1px solid black;
        text-align: center;
        align-content: center;
        font-size: 13px;
    }
    .project_stack{
        height: 13vh;
        display: flex;
        justify-content: space-evenly;
        flex-wrap: wrap;
        color: white;
        margin-top: 4px;
    }
    .project_stack>p{
        width: 12vw;
        height: 4vh;
        border: 1px solid #ff16f4;
        align-content: center;
        border-radius: 18px 18px 18px 18px;
        background-color: #ff16f4;
        font-size: 11px;
        box-shadow: 3px 3px 0px white;
        font-weight: 600;
    }
   
    .project_links{
        display: flex;
        justify-content: space-evenly;
        margin-top: 10px;
    }
    .github_repo{
        height: 5vh;
        width: 13vw;
        transition-duration: 300ms;
        text-align: center;
        align-content: center;
        color: black;
        background-color: white;
        text-decoration: none;
        display: inline-block;
        border-radius: 8px 8px 8px 8px;
        border: 1px solid white;
        display: flex;
        align-items: center;
        justify-content: space-evenly;
        font-size: 13px;
        font-weight: 600;
    }
    .github_repo:hover{
        border: 1px solid #b0b0b0;
        background-color: #b0b0b0;
    }
    .demo{
        background-color: #ff16f4;
        color: black;
        display: inline-block;
        width: 10vw;
        height: 5vh;
        text-decoration: none;
        text-align: center;
        align-content: center;
        border-radius: 8px 8px 8px 8px;
        font-weight: 600;
        font-size: 13px;
    }
    .demo:hover{
        transition-duration: 300ms;
        border: 1px solid purple;
        background-color: purple;
    }
    .certifications{
        height: 80vh;
        width: 100%;
        align-content: center;
    }
    .certifications_heading{
        color: #ff16f4;
        font-weight: 700;
        font-size: 34px;
        text-align: center;
    }
    .certifications_div{
        height: 60vh;
        width: 100%;
        display: grid;
        place-content: center;
        grid-template-columns: auto auto auto auto;
        gap: 15px;
    }
    .certificates{
        height: 30vh;
        width: 40vw;
        align-content: center;
        border-radius: 10px 10px 10px 10px;
    }
    .certificates:hover{
        transition-duration: 300ms;
        box-shadow: 0px 0px 15px #ff16f4;
    }
    .certificate_name{
        text-align: center;
        color: #d100d9;
        font-weight: 600;
        font-size: 18px;
    }
    .platform{
        text-align: center;
        color: white;
        font-weight: 600;
        font-size: 14px;
    }
    .view_certificate{
        height: 10vh;
        width: 100%;
        text-align: center;
        align-content: center;
    }
    .view_certificate>a{
        text-decoration: none;
        font-weight: 600;
        color: black;
        background-color: #ff16f4;
        display: inline-block;
        text-align: center;
        align-content: center;
        height: 6vh;
        width: 14vw;
        border-radius: 10px 10px 10px 10px;
    }
    .view_certificate>a:hover{
        transition-duration: 300ms;
        box-shadow: 0px 0px 15px #ff16f4;
    }
    .contacts{
        height: 120vh;
        width: 100%;
        display: grid;
        place-content: center;
    }
    .contacts_heading{
        font-size: 34px;
        font-weight: 700;
        color: #ff16f4;
        text-align: center;
    }
    
    form{
        height: 80vh;
        width: 60vw;
        border: 2px solid #ff16f4;
        display: grid;
        place-content: center;
        gap: 20px;
        border-radius: 20px 20px 20px 20px;
    }
    form>p{
        color: white;
        font-size: 26px;
        font-weight: 700;
        text-align: center;
    }
    .fullname,.email{
        height: 10vh;
        width: 40vw;
        color: white;
        font-weight: 500;
        font-size: 14px;
    }
    .fullname>input,.email>input{
        height: 5vh;
        width: 39vw;
        border-radius: 6px 6px 6px 6px;
        border: 1.5px solid white;
        background-color: transparent;
        margin-top: 10px;
        color: white;
        text-indent: 20px;
    }
    .fullname>input:focus,.email>input:focus{
        outline: 1.5px solid #ff16f4;
    }
    .message{
        height: 24vh;
        width: 40vw;
        align-content: center;
        color: white;
        font-size: 14px;
    }
    .message>textarea{
        height: 15vh;
        width: 39vw;
        text-indent: 20px;
        background-color: transparent;
        border-radius: 6px 6px 6px 6px;
        border: 1.5px solid white;
        color: white;
        margin-top: 10px;
    }
    .message>textarea:focus{
        outline: 1.5px solid #ff16f4;
    }
    .submit{
        height: 8vh;
        font-size: 18px;
        font-weight: 600;
        border: 1px solid #ff16f4;
        background-color: #ff16f4;
        border-radius: 10px 10px 10px 10px;
        cursor: pointer;
    }
    .submit:hover{
        transition-duration: 300ms;
        background-color: #d100d9;
        border: 1px solid #d100d9;
    }
    footer{
        height: 40vh;
        width: 100%;
        display: grid;
        place-content: center;
    }
    .footer_heading{
        color: #ff16f4;
        font-size: 26px;
        font-weight: 700;
        text-align: center;
    }
    footer>p{
        color: white;
        text-align: center;
        font-size: 16px;
        margin-top: 20px;
    }
    .footer_links{
        margin-top: 20px;
        display: flex;
        justify-content: space-evenly;
        align-items: center;
    }
    .github_footer{
        color: white;
        font-size: 30px;
        text-decoration: none;
    }
    .x_footer{
        color: white;
        font-size: 30px;
        text-decoration: none;
    }
    .linkedin_footer{
        font-size: 30px;
        color: #5676ff;
        text-decoration: none;
    }
    .email_footer{
        font-size: 30px;
        color: orangered;
        text-decoration: none;
    }
}
@media screen and (min-width:500px) and (max-width:504px){
    header{
        height: 74px;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    nav{
        height: 70px;
        width: 100%;
        display: flex;
        justify-content: space-evenly;
        align-items: center;
        backdrop-filter: blur(30px);
        position: fixed;
    }
   /* The side navigation menu */
    .sidenav {
        height: 300px; /* 100% Full-height */
        width: 0; /* 0 width - change this with JavaScript */
        position: fixed; /* Stay in place */
        z-index: 1; /* Stay on top */
        top: 0; /* Stay at the top */
        left: 0;
        background-color: #111; /* Black*/
        overflow-x: hidden; /* Disable horizontal scroll */
        padding-top: 60px; /* Place content 60px from the top */
        transition: 0.5s; /* 0.5 second transition effect to slide in the sidenav */
        margin-left: 40px;
        border-radius: 18px 18px 18px 18px;
        align-content: center;
    }

    /* The navigation menu links */
    .sidenav a {
        padding: 8px 8px 8px 32px;
        text-decoration: none;
        font-size: 25px;
        color: #818181;
        display: block;
        transition: 0.3s;
        text-align: center;
    }

    /* When you mouse over the navigation links, change their color */
    .sidenav a:hover {
    color: #ff16f4;
    transition-duration: 300ms
    }

    /* Position and style the close button (top right corner) */
    .closebtn {
        position: absolute;
        top: 0;
        right: 25px;
        font-size: 36px;
        margin-left: 50px;
        color: white;
        border: none;
        background-color: transparent;
        cursor: pointer;
    }

    /* Style page content - use this if you want to push the page content to the right when you open the side navigation */
    #main {
    transition: margin-left .5s;
    padding: 20px;
    }
    .sidemenu>i{
        color: white;
        cursor: pointer;
    }
    .logo{
        font-size: 20px;
        font-weight: 700;
        color: white;
    }
    .nav_links{
        display: none;
    }
    .Resume{
        height: 30px;
        width: 15vw;
        border-radius: 18px 18px 18px 18px;
        display: inline-block;
        text-align: center;
        align-content: center;
        text-decoration: none;
        border: 1px solid #ff16f4;
        background-color: #ff16f4;
        color: black;
        font-weight: 600;
        font-size: 14px;
    }
    .Resume:hover{
        transition-duration: 150ms;
        box-shadow: 0px 0px 18px #ff16f4;
    }
    section{
        height: 4000px;
        width: 100%;
        border: 2px solid white;
        border-top: none;
        border-left: none;
        border-right: none;
    }
    .About{
        height: 1000px;
        width: 100%;
        display: grid;
        place-content: center;
        gap: 20px;
    }
    .About_img{
        height: 450px;
        width: 60vw;
    }
    .About_img>img{
        height: 100%;
        width: 100%;
        border-radius: 100px 100px 100px 100px;
    }
    .About_info{
        height: 400px;
        width: 60vw;
    }
    .name{
        font-size: 26px;
        font-weight: 700;
        color: white;
        text-align: center;
    }
    .job{
        font-size: 26px;
        font-weight: 700;
        color: #ff16f4;
        text-align: center;
    }
    .info{
        height: 150px;
        width: 100%;
    }
    .info>p{
        color: white;
        font-size: 14px;
        font-weight: 500;
    }
    .profiles{
        text-align: center;
    }
    .github_link{
        font-size: 26px;
        color: white;
    }
    .linkedin_link{
        text-decoration: none;
        font-size: 26px;
        color: #5676ff;
    }
    .x_link{
        text-decoration: none;
        font-size: 24px;
        color: white;
    }
    .download_resume{
        height: 100px;
        width: 100%;
        align-content: center;
        text-align: center;
        font-size: 14px;
    }
    .download_resume>a{
        height: 50px;
        width: 30vw;
        display: inline-block;
        align-content: center;
        text-align: center;
        background-color: #d100d9;
        border-radius: 10px 10px 10px 10px;
        text-decoration: none;
        color: black;
        font-weight: 600;
        font-size: 13px;
    }
    .download_resume>a:hover{
        transition-duration: 300ms;
        background-color: #ad00b1;
        box-shadow: 0px 0px 18px #ad00b1;
    }
    .tech_stack{
        height: 320px;
        width: 100%;
        align-content: center;
    }
    .tech_stack_heading{
        color: #ff16f4;
        font-weight: 700;
        text-align: center;
        font-size: 30px;
    }
    .stack_div{
        height: 250px;
        width: 100%;
        text-align: center;
        align-content: center;
    }
    .html,.css,.javascript,.tailwind,.bootstrap,.php,.mysql{
        height: 80px;
        width: 18vw;
        background-color: transparent;
        border-radius: 8px 8px 8px 8px;
    }
    .html{
        border: 1.5px solid orange;
    }
    .html:hover{
        box-shadow: 0px 0px 20px orange;
        transition-duration: 300ms;
        background-color: #9999993d;
    }
    .html>img{
        height: 25px;
    }
    .html>p{
        color: white;
        font-weight: 600;
    }
    .css{
        border: 1.5px solid blue;
    }
    .css:hover{
        background-color: #9999993d;
        box-shadow: 0px 0px 20px blue;
        transition-duration: 300ms;
    }
    .css>img{
        height: 23px;
    }
    .css>p{
        color: white;
        font-weight: 600;
    }
    .javascript{
        border: 1.5px solid yellow;
    }
    .javascript:hover{
        background-color: #9999993d;
        box-shadow: 0px 0px 20px yellow;
        transition-duration: 300ms;
    }
    .javascript>img{
        height: 24px;
    }
    .javascript>p{
        color: white;
        font-weight: 600;
    }
    .tailwind{
        border: 1.5px solid lightblue;
    }
    .tailwind>img{
        height: 24px;
    }
    .tailwind>p{
        color: white;
        font-weight: 600;
    }
    .tailwind:hover{
        transition-duration: 300ms;
        background-color: #9999993d;
        box-shadow: 0px 0px 20px lightblue;
    }
    .bootstrap{
        border: 1.5px solid #ad00b1;
    }
    .bootstrap:hover{
        background-color: #9999993d;
        box-shadow: 0px 0px 20px #ad00b1;
        transition-duration: 300ms;
    }
    .bootstrap>img{
        height: 24px;
    }
    .bootstrap>p{
        color: white;
        font-weight: 600;
    }
    .php{
        border: 1.5px solid #ff16f4;
    }
    .php:hover{
        transition-duration: 300ms;
        box-shadow: 0px 0px 20px #ff16f4;
        background-color: #9999993d;
    }
    .php>img{
        height: 23px;
    }
    .php>p{
        color: white;
        font-weight: 600;
    }
    .mysql{
        border: 1.5px solid lightskyblue;
    }
    .mysql:hover{
        transition-duration: 300ms;
        box-shadow: 0px 0px 20px lightskyblue;
        background-color: #9999993d;
    }
    .mysql>img{
        height: 23px;
    }
    .mysql>p{
        color: white;
        font-weight: 600;
    }
    .services{
        height: 1000px;
        width: 100%;
        align-content: center;
    }
    .services_heading{
        color: #ff16f4;
        font-weight: 700;
        text-align: center;
        font-size: 34px;
    }
    .my_offer{
        height: 850px;
        width: 100%;
        display: flex;
        justify-content: space-evenly;
        align-items: center;
        flex-wrap: wrap;
    }
    .the_offers{
        height: 160px;
        width: 60vw;
        display: grid;
        place-content: center;
        gap: 10px;
        border-radius: 8px 8px 8px 8px;
    }
    .the_offers:hover{
        transition-duration: 300ms;
        box-shadow: 0px 0px 30px #ff16f4;
    }
    .the_offers>i{
        font-size: 20px;
        color: #ff16f4;
    }
    .the_offers>p{
        font-weight: 600;
        font-size: 18px;
        color: white;
    }
    .the_offers>div{
        width: 50vw;
        font-size: 13px;
        color: white;
    }
    .projects{
        height: 1200px;
        width: 100%;
        border: 1px solid white;
        align-content: center;
    }
    .projects_heading{
        font-size: 34px;
        color: #ff16f4;
        font-weight: 700;
        text-align: center;
    }
    .projects_div{
        height: 900px;
        width: 100%;
        border: 1px solid white;
        display: flex;
        justify-content: space-evenly;
        align-items: center;
        flex-wrap: wrap;
    }
    .projects_div>div{
        height: 400px;
        width: 60vw;
        border: 2px solid #ff16f4;
        text-align: center;
        border-radius: 18px 18px 18px 18px;
    }
    .projects_div>div:hover{
        transition-duration: 300ms;
        box-shadow: 0px 0px 30px #ff16f4;
        background-color: #9999993d;
    }
    .project_name{
        font-size: 20px;
        text-align: center;
        font-weight: 700;
        color: #ff16f4;
    }
    .project_img{
        height: 150px;
        width: 100%;
        border-top-left-radius: inherit;
        border-top-right-radius: inherit;
        border-bottom: 2px solid #ff16f4;
    }
    .project_info{
        height: 80px;
        color: white;
        border: 1px solid black;
        text-align: center;
        align-content: center;
        font-size: 13px;
    }
    .project_stack{
        height: 60px;
        display: flex;
        justify-content: space-evenly;
        flex-wrap: wrap;
        color: white;
        margin-top: 4px;
    }
    .project_stack>p{
        width: 12vw;
        height: 25px;
        border: 1px solid #ff16f4;
        align-content: center;
        border-radius: 18px 18px 18px 18px;
        background-color: #ff16f4;
        font-size: 11px;
        box-shadow: 3px 3px 0px white;
        font-weight: 600;
    }
   
    .project_links{
        display: flex;
        justify-content: space-evenly;
        margin-top: 10px;
    }
    .github_repo{
        height: 5vh;
        width: 13vw;
        transition-duration: 300ms;
        text-align: center;
        align-content: center;
        color: black;
        background-color: white;
        text-decoration: none;
        display: inline-block;
        border-radius: 8px 8px 8px 8px;
        border: 1px solid white;
        display: flex;
        align-items: center;
        justify-content: space-evenly;
        font-size: 13px;
        font-weight: 600;
    }
    .github_repo:hover{
        border: 1px solid #b0b0b0;
        background-color: #b0b0b0;
    }
    .demo{
        background-color: #ff16f4;
        color: black;
        display: inline-block;
        width: 10vw;
        height: 5vh;
        text-decoration: none;
        text-align: center;
        align-content: center;
        border-radius: 8px 8px 8px 8px;
        font-weight: 600;
        font-size: 13px;
    }
    .demo:hover{
        transition-duration: 300ms;
        border: 1px solid purple;
        background-color: purple;
    }
    .certifications{
        height: 80vh;
        width: 100%;
        align-content: center;
    }
    .certifications_heading{
        color: #ff16f4;
        font-weight: 700;
        font-size: 34px;
        text-align: center;
    }
    .certifications_div{
        height: 60vh;
        width: 100%;
        display: grid;
        place-content: center;
        grid-template-columns: auto auto auto auto;
        gap: 15px;
    }
    .certificates{
        height: 30vh;
        width: 40vw;
        align-content: center;
        border-radius: 10px 10px 10px 10px;
    }
    .certificates:hover{
        transition-duration: 300ms;
        box-shadow: 0px 0px 15px #ff16f4;
    }
    .certificate_name{
        text-align: center;
        color: #d100d9;
        font-weight: 600;
        font-size: 18px;
    }
    .platform{
        text-align: center;
        color: white;
        font-weight: 600;
        font-size: 14px;
    }
    .view_certificate{
        height: 10vh;
        width: 100%;
        text-align: center;
        align-content: center;
    }
    .view_certificate>a{
        text-decoration: none;
        font-weight: 600;
        color: black;
        background-color: #ff16f4;
        display: inline-block;
        text-align: center;
        align-content: center;
        height: 6vh;
        width: 14vw;
        border-radius: 10px 10px 10px 10px;
    }
    .view_certificate>a:hover{
        transition-duration: 300ms;
        box-shadow: 0px 0px 15px #ff16f4;
    }
    .contacts{
        height: 120vh;
        width: 100%;
        display: grid;
        place-content: center;
    }
    .contacts_heading{
        font-size: 34px;
        font-weight: 700;
        color: #ff16f4;
        text-align: center;
    }
    
    form{
        height: 80vh;
        width: 60vw;
        border: 2px solid #ff16f4;
        display: grid;
        place-content: center;
        gap: 20px;
        border-radius: 20px 20px 20px 20px;
    }
    form>p{
        color: white;
        font-size: 26px;
        font-weight: 700;
        text-align: center;
    }
    .fullname,.email{
        height: 10vh;
        width: 40vw;
        color: white;
        font-weight: 500;
        font-size: 14px;
    }
    .fullname>input,.email>input{
        height: 5vh;
        width: 39vw;
        border-radius: 6px 6px 6px 6px;
        border: 1.5px solid white;
        background-color: transparent;
        margin-top: 10px;
        color: white;
        text-indent: 20px;
    }
    .fullname>input:focus,.email>input:focus{
        outline: 1.5px solid #ff16f4;
    }
    .message{
        height: 24vh;
        width: 40vw;
        align-content: center;
        color: white;
        font-size: 14px;
    }
    .message>textarea{
        height: 15vh;
        width: 39vw;
        text-indent: 20px;
        background-color: transparent;
        border-radius: 6px 6px 6px 6px;
        border: 1.5px solid white;
        color: white;
        margin-top: 10px;
    }
    .message>textarea:focus{
        outline: 1.5px solid #ff16f4;
    }
    .submit{
        height: 8vh;
        font-size: 18px;
        font-weight: 600;
        border: 1px solid #ff16f4;
        background-color: #ff16f4;
        border-radius: 10px 10px 10px 10px;
        cursor: pointer;
    }
    .submit:hover{
        transition-duration: 300ms;
        background-color: #d100d9;
        border: 1px solid #d100d9;
    }
    footer{
        height: 40vh;
        width: 100%;
        display: grid;
        place-content: center;
    }
    .footer_heading{
        color: #ff16f4;
        font-size: 26px;
        font-weight: 700;
        text-align: center;
    }
    footer>p{
        color: white;
        text-align: center;
        font-size: 16px;
        margin-top: 20px;
    }
    .footer_links{
        margin-top: 20px;
        display: flex;
        justify-content: space-evenly;
        align-items: center;
    }
    .github_footer{
        color: white;
        font-size: 30px;
        text-decoration: none;
    }
    .x_footer{
        color: white;
        font-size: 30px;
        text-decoration: none;
    }
    .linkedin_footer{
        font-size: 30px;
        color: #5676ff;
        text-decoration: none;
    }
    .email_footer{
        font-size: 30px;
        color: orangered;
        text-decoration: none;
    }
}
@media screen and (min-width:505px) and (max-width:555px){
    header{
        height: 16vh;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    nav{
        height: 10vh;
        width: 100%;
        display: flex;
        justify-content: space-evenly;
        align-items: center;
        backdrop-filter: blur(30px);
        position: fixed;
    }
   /* The side navigation menu */
    .sidenav {
        height: 60vh; /* 100% Full-height */
        width: 0; /* 0 width - change this with JavaScript */
        position: fixed; /* Stay in place */
        z-index: 1; /* Stay on top */
        top: 0; /* Stay at the top */
        left: 0;
        background-color: #111; /* Black*/
        overflow-x: hidden; /* Disable horizontal scroll */
        padding-top: 60px; /* Place content 60px from the top */
        transition: 0.5s; /* 0.5 second transition effect to slide in the sidenav */
        margin-left: 40px;
        border-radius: 18px 18px 18px 18px;
        align-content: center;
    }

    /* The navigation menu links */
    .sidenav a {
        padding: 8px 8px 8px 32px;
        text-decoration: none;
        font-size: 25px;
        color: #818181;
        display: block;
        transition: 0.3s;
        text-align: center;
    }

    /* When you mouse over the navigation links, change their color */
    .sidenav a:hover {
    color: #ff16f4;
    transition-duration: 300ms
    }

    /* Position and style the close button (top right corner) */
    .closebtn {
        position: absolute;
        top: 0;
        right: 25px;
        font-size: 36px;
        margin-left: 50px;
        color: white;
        border: none;
        background-color: transparent;
        cursor: pointer;
    }

    /* Style page content - use this if you want to push the page content to the right when you open the side navigation */
    #main {
    transition: margin-left .5s;
    padding: 20px;
    }
    .sidemenu>i{
        color: white;
        cursor: pointer;
    }
    .logo{
        font-size: 20px;
        font-weight: 700;
        color: white;
    }
    .nav_links{
        display: none;
    }
    .Resume{
        height: 6vh;
        width: 15vw;
        border-radius: 18px 18px 18px 18px;
        display: inline-block;
        text-align: center;
        align-content: center;
        text-decoration: none;
        border: 1px solid #ff16f4;
        background-color: #ff16f4;
        color: black;
        font-weight: 600;
        font-size: 14px;
    }
    .Resume:hover{
        transition-duration: 150ms;
        box-shadow: 0px 0px 18px #ff16f4;
    }
    section{
        height: 800vh;
        width: 100%;
        border: 2px solid white;
        border-top: none;
        border-left: none;
        border-right: none;
    }
    .About{
        height: 160vh;
        width: 100%;
        display: grid;
        place-content: center;
        gap: 20px;
    }
    .About_img{
        height: 75vh;
        width: 60vw;
    }
    .About_img>img{
        height: 100%;
        width: 100%;
        border-radius: 100px 100px 100px 100px;
    }
    .About_info{
        height: 70vh;
        width: 60vw;
    }
    .name{
        font-size: 26px;
        font-weight: 700;
        color: white;
        text-align: center;
    }
    .job{
        font-size: 26px;
        font-weight: 700;
        color: #ff16f4;
        text-align: center;
    }
    .info{
        height: 19vh;
        width: 100%;
    }
    .info>p{
        color: white;
        font-size: 14px;
        font-weight: 500;
    }
    .profiles{
        text-align: center;
    }
    .github_link{
        font-size: 26px;
        color: white;
    }
    .linkedin_link{
        text-decoration: none;
        font-size: 26px;
        color: #5676ff;
    }
    .x_link{
        text-decoration: none;
        font-size: 24px;
        color: white;
    }
    .download_resume{
        height: 15vh;
        width: 100%;
        align-content: center;
        text-align: center;
        font-size: 14px;
    }
    .download_resume>a{
        height: 8vh;
        width: 30vw;
        display: inline-block;
        align-content: center;
        text-align: center;
        background-color: #d100d9;
        border-radius: 10px 10px 10px 10px;
        text-decoration: none;
        color: black;
        font-weight: 600;
        font-size: 13px;
    }
    .download_resume>a:hover{
        transition-duration: 300ms;
        background-color: #ad00b1;
        box-shadow: 0px 0px 18px #ad00b1;
    }
    .tech_stack{
        height: 68vh;
        width: 100%;
        align-content: center;
    }
    .tech_stack_heading{
        color: #ff16f4;
        font-weight: 700;
        text-align: center;
        font-size: 30px;
    }
    .stack_div{
        height: 40vh;
        width: 100%;
        text-align: center;
        align-content: center;
    }
    .html,.css,.javascript,.tailwind,.bootstrap,.php,.mysql{
        height: 16vh;
        width: 18vw;
        background-color: transparent;
        border-radius: 8px 8px 8px 8px;
    }
    .html{
        border: 1.5px solid orange;
    }
    .html:hover{
        box-shadow: 0px 0px 20px orange;
        transition-duration: 300ms;
        background-color: #9999993d;
    }
    .html>img{
        height: 5vh;
    }
    .html>p{
        color: white;
        font-weight: 600;
    }
    .css{
        border: 1.5px solid blue;
    }
    .css:hover{
        background-color: #9999993d;
        box-shadow: 0px 0px 20px blue;
        transition-duration: 300ms;
    }
    .css>img{
        height: 4.5vh;
    }
    .css>p{
        color: white;
        font-weight: 600;
    }
    .javascript{
        border: 1.5px solid yellow;
    }
    .javascript:hover{
        background-color: #9999993d;
        box-shadow: 0px 0px 20px yellow;
        transition-duration: 300ms;
    }
    .javascript>img{
        height: 4.8vh;
    }
    .javascript>p{
        color: white;
        font-weight: 600;
    }
    .tailwind{
        border: 1.5px solid lightblue;
    }
    .tailwind>img{
        height: 4.5vh;
    }
    .tailwind>p{
        color: white;
        font-weight: 600;
    }
    .tailwind:hover{
        transition-duration: 300ms;
        background-color: #9999993d;
        box-shadow: 0px 0px 20px lightblue;
    }
    .bootstrap{
        border: 1.5px solid #ad00b1;
    }
    .bootstrap:hover{
        background-color: #9999993d;
        box-shadow: 0px 0px 20px #ad00b1;
        transition-duration: 300ms;
    }
    .bootstrap>img{
        height: 4.5vh;
    }
    .bootstrap>p{
        color: white;
        font-weight: 600;
    }
    .php{
        border: 1.5px solid #ff16f4;
    }
    .php:hover{
        transition-duration: 300ms;
        box-shadow: 0px 0px 20px #ff16f4;
        background-color: #9999993d;
    }
    .php>img{
        height: 4.5vh;
    }
    .php>p{
        color: white;
        font-weight: 600;
    }
    .mysql{
        border: 1.5px solid lightskyblue;
    }
    .mysql:hover{
        transition-duration: 300ms;
        box-shadow: 0px 0px 20px lightskyblue;
        background-color: #9999993d;
    }
    .mysql>img{
        height: 4.5vh;
    }
    .mysql>p{
        color: white;
        font-weight: 600;
    }
    .services{
        height: 170vh;
        width: 100%;
        align-content: center;
    }
    .services_heading{
        color: #ff16f4;
        font-weight: 700;
        text-align: center;
        font-size: 34px;
    }
    .my_offer{
        height: 150vh;
        width: 100%;
        display: flex;
        justify-content: space-evenly;
        align-items: center;
        flex-wrap: wrap;
    }
    .the_offers{
        height: 30vh;
        width: 60vw;
        display: grid;
        place-content: center;
        gap: 10px;
        border-radius: 8px 8px 8px 8px;
    }
    .the_offers:hover{
        transition-duration: 300ms;
        box-shadow: 0px 0px 30px #ff16f4;
    }
    .the_offers>i{
        font-size: 20px;
        color: #ff16f4;
    }
    .the_offers>p{
        font-weight: 600;
        font-size: 18px;
        color: white;
    }
    .the_offers>div{
        width: 50vw;
        font-size: 13px;
        color: white;
    }
    .projects{
        height: 190vh;
        width: 100%;
        align-content: center;
    }
    .projects_heading{
        font-size: 34px;
        color: #ff16f4;
        font-weight: 700;
        text-align: center;
    }
    .projects_div{
        height: 170vh;
        width: 100%;
        display: flex;
        justify-content: space-evenly;
        align-items: center;
        flex-wrap: wrap;
    }
    .projects_div>div{
        height: 76vh;
        width: 60vw;
        border: 2px solid #ff16f4;
        align-content: center;
        text-align: center;
        border-radius: 18px 18px 18px 18px;
    }
    .projects_div>div:hover{
        transition-duration: 300ms;
        box-shadow: 0px 0px 30px #ff16f4;
        background-color: #9999993d;
    }
    .project_name{
        font-size: 20px;
        text-align: center;
        font-weight: 700;
        color: #ff16f4;
    }
    .project_img{
        height: 26vh;
        width: 100%;
    }
    .project_info{
        height: 13vh;
        color: white;
        border: 1px solid black;
        text-align: center;
        align-content: center;
        font-size: 13px;
    }
    .project_stack{
        height: 13vh;
        display: flex;
        justify-content: space-evenly;
        flex-wrap: wrap;
        color: white;
        margin-top: 4px;
    }
    .project_stack>p{
        width: 12vw;
        height: 4vh;
        border: 1px solid #ff16f4;
        align-content: center;
        border-radius: 18px 18px 18px 18px;
        background-color: #ff16f4;
        font-size: 11px;
        box-shadow: 3px 3px 0px white;
        font-weight: 600;
    }
   
    .project_links{
        display: flex;
        justify-content: space-evenly;
        margin-top: 10px;
    }
    .github_repo{
        height: 5vh;
        width: 13vw;
        transition-duration: 300ms;
        text-align: center;
        align-content: center;
        color: black;
        background-color: white;
        text-decoration: none;
        display: inline-block;
        border-radius: 8px 8px 8px 8px;
        border: 1px solid white;
        display: flex;
        align-items: center;
        justify-content: space-evenly;
        font-size: 13px;
        font-weight: 600;
    }
    .github_repo:hover{
        border: 1px solid #b0b0b0;
        background-color: #b0b0b0;
    }
    .demo{
        background-color: #ff16f4;
        color: black;
        display: inline-block;
        width: 10vw;
        height: 5vh;
        text-decoration: none;
        text-align: center;
        align-content: center;
        border-radius: 8px 8px 8px 8px;
        font-weight: 600;
        font-size: 13px;
    }
    .demo:hover{
        transition-duration: 300ms;
        border: 1px solid purple;
        background-color: purple;
    }
    .certifications{
        height: 80vh;
        width: 100%;
        align-content: center;
    }
    .certifications_heading{
        color: #ff16f4;
        font-weight: 700;
        font-size: 34px;
        text-align: center;
    }
    .certifications_div{
        height: 60vh;
        width: 100%;
        display: grid;
        place-content: center;
        grid-template-columns: auto auto auto auto;
        gap: 15px;
    }
    .certificates{
        height: 30vh;
        width: 40vw;
        align-content: center;
        border-radius: 10px 10px 10px 10px;
    }
    .certificates:hover{
        transition-duration: 300ms;
        box-shadow: 0px 0px 15px #ff16f4;
    }
    .certificate_name{
        text-align: center;
        color: #d100d9;
        font-weight: 600;
        font-size: 18px;
    }
    .platform{
        text-align: center;
        color: white;
        font-weight: 600;
        font-size: 14px;
    }
    .view_certificate{
        height: 10vh;
        width: 100%;
        text-align: center;
        align-content: center;
    }
    .view_certificate>a{
        text-decoration: none;
        font-weight: 600;
        color: black;
        background-color: #ff16f4;
        display: inline-block;
        text-align: center;
        align-content: center;
        height: 6vh;
        width: 14vw;
        border-radius: 10px 10px 10px 10px;
    }
    .view_certificate>a:hover{
        transition-duration: 300ms;
        box-shadow: 0px 0px 15px #ff16f4;
    }
    .contacts{
        height: 120vh;
        width: 100%;
        display: grid;
        place-content: center;
    }
    .contacts_heading{
        font-size: 34px;
        font-weight: 700;
        color: #ff16f4;
        text-align: center;
    }
    
    form{
        height: 80vh;
        width: 60vw;
        border: 2px solid #ff16f4;
        display: grid;
        place-content: center;
        gap: 20px;
        border-radius: 20px 20px 20px 20px;
    }
    form>p{
        color: white;
        font-size: 26px;
        font-weight: 700;
        text-align: center;
    }
    .fullname,.email{
        height: 10vh;
        width: 40vw;
        color: white;
        font-weight: 500;
        font-size: 14px;
    }
    .fullname>input,.email>input{
        height: 5vh;
        width: 39vw;
        border-radius: 6px 6px 6px 6px;
        border: 1.5px solid white;
        background-color: transparent;
        margin-top: 10px;
        color: white;
        text-indent: 20px;
    }
    .fullname>input:focus,.email>input:focus{
        outline: 1.5px solid #ff16f4;
    }
    .message{
        height: 24vh;
        width: 40vw;
        align-content: center;
        color: white;
        font-size: 14px;
    }
    .message>textarea{
        height: 15vh;
        width: 39vw;
        text-indent: 20px;
        background-color: transparent;
        border-radius: 6px 6px 6px 6px;
        border: 1.5px solid white;
        color: white;
        margin-top: 10px;
    }
    .message>textarea:focus{
        outline: 1.5px solid #ff16f4;
    }
    .submit{
        height: 8vh;
        font-size: 18px;
        font-weight: 600;
        border: 1px solid #ff16f4;
        background-color: #ff16f4;
        border-radius: 10px 10px 10px 10px;
        cursor: pointer;
    }
    .submit:hover{
        transition-duration: 300ms;
        background-color: #d100d9;
        border: 1px solid #d100d9;
    }
    footer{
        height: 40vh;
        width: 100%;
        display: grid;
        place-content: center;
    }
    .footer_heading{
        color: #ff16f4;
        font-size: 26px;
        font-weight: 700;
        text-align: center;
    }
    footer>p{
        color: white;
        text-align: center;
        font-size: 16px;
        margin-top: 20px;
    }
    .footer_links{
        margin-top: 20px;
        display: flex;
        justify-content: space-evenly;
        align-items: center;
    }
    .github_footer{
        color: white;
        font-size: 30px;
        text-decoration: none;
    }
    .x_footer{
        color: white;
        font-size: 30px;
        text-decoration: none;
    }
    .linkedin_footer{
        font-size: 30px;
        color: #5676ff;
        text-decoration: none;
    }
    .email_footer{
        font-size: 30px;
        color: orangered;
        text-decoration: none;
    }
}
@media screen and (min-width:556px) and (max-width:616px){
    header{
        height: 74px;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    nav{
        height: 70px;
        width: 100%;
        display: flex;
        justify-content: space-evenly;
        align-items: center;
        backdrop-filter: blur(30px);
        position: fixed;
    }
   /* The side navigation menu */
    .sidenav {
        height: 60vh; /* 100% Full-height */
        width: 0; /* 0 width - change this with JavaScript */
        position: fixed; /* Stay in place */
        z-index: 1; /* Stay on top */
        top: 0; /* Stay at the top */
        left: 0;
        background-color: #111; /* Black*/
        overflow-x: hidden; /* Disable horizontal scroll */
        padding-top: 60px; /* Place content 60px from the top */
        transition: 0.5s; /* 0.5 second transition effect to slide in the sidenav */
        margin-left: 40px;
        border-radius: 18px 18px 18px 18px;
        align-content: center;
    }

    /* The navigation menu links */
    .sidenav a {
        padding: 8px 8px 8px 32px;
        text-decoration: none;
        font-size: 25px;
        color: #818181;
        display: block;
        transition: 0.3s;
        text-align: center;
    }

    /* When you mouse over the navigation links, change their color */
    .sidenav a:hover {
    color: #ff16f4;
    transition-duration: 300ms
    }

    /* Position and style the close button (top right corner) */
    .closebtn {
        position: absolute;
        top: 0;
        right: 25px;
        font-size: 36px;
        margin-left: 50px;
        color: white;
        border: none;
        background-color: transparent;
        cursor: pointer;
    }

    /* Style page content - use this if you want to push the page content to the right when you open the side navigation */
    #main {
    transition: margin-left .5s;
    padding: 20px;
    }
    .sidemenu>i{
        color: white;
        cursor: pointer;
    }
    .logo{
        font-size: 20px;
        font-weight: 700;
        color: white;
    }
    .nav_links{
        display: none;
    }
    .Resume{
        height: 35px;
        width: 13vw;
        border-radius: 18px 18px 18px 18px;
        display: inline-block;
        text-align: center;
        align-content: center;
        text-decoration: none;
        border: 1px solid #ff16f4;
        background-color: #ff16f4;
        color: black;
        font-weight: 600;
        font-size: 13px;
    }
    .Resume:hover{
        transition-duration: 150ms;
        box-shadow: 0px 0px 18px #ff16f4;
    }
    section{
        height: 3500px;
        width: 100%;
        border: 2px solid white;
        border-top: none;
        border-left: none;
        border-right: none;
    }
    .About{
        height: 700px;
        width: 100%;
        border: 1px solid white;
        display: grid;
        place-content: center;
        gap: 20px;
    }
    .About_img{
        height: 400px;
        width: 50vw;
    }
    .About_img>img{
        height: 100%;
        width: 100%;
        border-radius: 100px 100px 100px 100px;
    }
    .About_info{
        height: 70vh;
        width: 50vw;
    }
    .name{
        font-size: 26px;
        font-weight: 700;
        color: white;
        text-align: center;
    }
    .job{
        font-size: 26px;
        font-weight: 700;
        color: #ff16f4;
        text-align: center;
    }
    .info{
        height: 19vh;
        width: 100%;
    }
    .info>p{
        color: white;
        font-size: 14px;
        font-weight: 500;
    }
    .profiles{
        text-align: center;
    }
    .github_link{
        font-size: 26px;
        color: white;
    }
    .linkedin_link{
        text-decoration: none;
        font-size: 26px;
        color: #5676ff;
    }
    .x_link{
        text-decoration: none;
        font-size: 26px;
        color: white;
    }
    .download_resume{
        height: 15vh;
        width: 100%;
        align-content: center;
        text-align: center;
        font-size: 14px;
    }
    .download_resume>a{
        height: 8vh;
        width: 26vw;
        display: inline-block;
        align-content: center;
        text-align: center;
        background-color: #d100d9;
        border-radius: 10px 10px 10px 10px;
        text-decoration: none;
        color: black;
        font-weight: 600;
        font-size: 13px;
    }
    .download_resume>a:hover{
        transition-duration: 300ms;
        background-color: #ad00b1;
        box-shadow: 0px 0px 18px #ad00b1;
    }
    .tech_stack{
        height: 68vh;
        width: 100%;
        align-content: center;
    }
    .tech_stack_heading{
        color: #ff16f4;
        font-weight: 700;
        text-align: center;
        font-size: 35px;
    }
    .stack_div{
        height: 40vh;
        width: 100%;
        text-align: center;
        align-content: center;
    }
    .html,.css,.javascript,.tailwind,.bootstrap,.php,.mysql{
        height: 16vh;
        width: 18vw;
        background-color: transparent;
        border-radius: 8px 8px 8px 8px;
    }
    .html{
        border: 1.5px solid orange;
    }
    .html:hover{
        box-shadow: 0px 0px 20px orange;
        transition-duration: 300ms;
        background-color: #9999993d;
    }
    .html>img{
        height: 5vh;
    }
    .html>p{
        color: white;
        font-weight: 600;
    }
    .css{
        border: 1.5px solid blue;
    }
    .css:hover{
        background-color: #9999993d;
        box-shadow: 0px 0px 20px blue;
        transition-duration: 300ms;
    }
    .css>img{
        height: 4.5vh;
    }
    .css>p{
        color: white;
        font-weight: 600;
    }
    .javascript{
        border: 1.5px solid yellow;
    }
    .javascript:hover{
        background-color: #9999993d;
        box-shadow: 0px 0px 20px yellow;
        transition-duration: 300ms;
    }
    .javascript>img{
        height: 4.8vh;
    }
    .javascript>p{
        color: white;
        font-weight: 600;
    }
    .tailwind{
        border: 1.5px solid lightblue;
    }
    .tailwind>img{
        height: 4.5vh;
    }
    .tailwind>p{
        color: white;
        font-weight: 600;
    }
    .tailwind:hover{
        transition-duration: 300ms;
        background-color: #9999993d;
        box-shadow: 0px 0px 20px lightblue;
    }
    .bootstrap{
        border: 1.5px solid #ad00b1;
    }
    .bootstrap:hover{
        background-color: #9999993d;
        box-shadow: 0px 0px 20px #ad00b1;
        transition-duration: 300ms;
    }
    .bootstrap>img{
        height: 4.5vh;
    }
    .bootstrap>p{
        color: white;
        font-weight: 600;
    }
    .php{
        border: 1.5px solid #ff16f4;
    }
    .php:hover{
        transition-duration: 300ms;
        box-shadow: 0px 0px 20px #ff16f4;
        background-color: #9999993d;
    }
    .php>img{
        height: 4.5vh;
    }
    .php>p{
        color: white;
        font-weight: 600;
    }
    .mysql{
        border: 1.5px solid lightskyblue;
    }
    .mysql:hover{
        transition-duration: 300ms;
        box-shadow: 0px 0px 20px lightskyblue;
        background-color: #9999993d;
    }
    .mysql>img{
        height: 4.5vh;
    }
    .mysql>p{
        color: white;
        font-weight: 600;
    }
    .services{
        height: 80vh;
        width: 100%;
        align-content: center;
    }
    .services_heading{
        color: #ff16f4;
        font-weight: 700;
        text-align: center;
        font-size: 34px;
    }
    .my_offer{
        height: 60vh;
        width: 100%;
        display: flex;
        justify-content: space-evenly;
        align-items: center;
        flex-wrap: wrap;
    }
    .the_offers{
        height: 25vh;
        width: 38vw;
        display: grid;
        place-content: center;
        gap: 10px;
        border-radius: 8px 8px 8px 8px;
    }
    .the_offers:hover{
        transition-duration: 300ms;
        box-shadow: 0px 0px 30px #ff16f4;
    }
    .the_offers>i{
        font-size: 20px;
        color: #ff16f4;
    }
    .the_offers>p{
        font-weight: 600;
        font-size: 18px;
        color: white;
    }
    .the_offers>div{
        width: 30vw;
        font-size: 13px;
        color: white;
    }
    .projects{
        height: 190vh;
        width: 100%;
        align-content: center;
    }
    .projects_heading{
        font-size: 34px;
        color: #ff16f4;
        font-weight: 700;
        text-align: center;
    }
    .projects_div{
        height: 170vh;
        width: 100%;
        display: flex;
        justify-content: space-evenly;
        align-items: center;
        flex-wrap: wrap;
    }
    .projects_div>div{
        height: 76vh;
        width: 50vw;
        border: 2px solid #ff16f4;
        align-content: center;
        text-align: center;
        border-radius: 18px 18px 18px 18px;
    }
    .projects_div>div:hover{
        transition-duration: 300ms;
        box-shadow: 0px 0px 30px #ff16f4;
        background-color: #9999993d;
    }
    .project_name{
        font-size: 20px;
        text-align: center;
        font-weight: 700;
        color: #ff16f4;
    }
    .project_img{
        height: 30vh;
        width: 100%;
    }
    .project_info{
        height: 13vh;
        color: white;
        border: 1px solid black;
        text-align: center;
        align-content: center;
        font-size: 13px;
    }
    .project_stack{
        height: 13vh;
        display: flex;
        justify-content: space-evenly;
        flex-wrap: wrap;
        color: white;
        margin-top: 4px;
    }
    .project_stack>p{
        width: 9vw;
        height: 4vh;
        border: 1px solid #ff16f4;
        align-content: center;
        border-radius: 18px 18px 18px 18px;
        background-color: #ff16f4;
        font-size: 11px;
        box-shadow: 3px 3px 0px white;
        font-weight: 600;
    }
   
    .project_links{
        display: flex;
        justify-content: space-evenly;
        margin-top: 10px;
    }
    .github_repo{
        height: 5vh;
        width: 13vw;
        transition-duration: 300ms;
        text-align: center;
        align-content: center;
        color: black;
        background-color: white;
        text-decoration: none;
        display: inline-block;
        border-radius: 8px 8px 8px 8px;
        border: 1px solid white;
        display: flex;
        align-items: center;
        justify-content: space-evenly;
        font-size: 13px;
        font-weight: 600;
    }
    .github_repo:hover{
        border: 1px solid #b0b0b0;
        background-color: #b0b0b0;
    }
    .demo{
        background-color: #ff16f4;
        color: black;
        display: inline-block;
        width: 10vw;
        height: 5vh;
        text-decoration: none;
        text-align: center;
        align-content: center;
        border-radius: 8px 8px 8px 8px;
        font-weight: 600;
        font-size: 13px;
    }
    .demo:hover{
        transition-duration: 300ms;
        border: 1px solid purple;
        background-color: purple;
    }
    .certifications{
        height: 80vh;
        width: 100%;
        align-content: center;
    }
    .certifications_heading{
        color: #ff16f4;
        font-weight: 700;
        font-size: 34px;
        text-align: center;
    }
    .certifications_div{
        height: 60vh;
        width: 100%;
        display: grid;
        place-content: center;
        grid-template-columns: auto auto auto auto;
        gap: 15px;
    }
    .certificates{
        height: 30vh;
        width: 40vw;
        align-content: center;
        border-radius: 10px 10px 10px 10px;
    }
    .certificates:hover{
        transition-duration: 300ms;
        box-shadow: 0px 0px 15px #ff16f4;
    }
    .certificate_name{
        text-align: center;
        color: #d100d9;
        font-weight: 600;
        font-size: 20px;
    }
    .platform{
        text-align: center;
        color: white;
        font-weight: 600;
    }
    .view_certificate{
        height: 10vh;
        width: 100%;
        text-align: center;
        align-content: center;
    }
    .view_certificate>a{
        text-decoration: none;
        font-weight: 600;
        color: black;
        background-color: #ff16f4;
        display: inline-block;
        text-align: center;
        align-content: center;
        height: 6vh;
        width: 14vw;
        border-radius: 10px 10px 10px 10px;
    }
    .view_certificate>a:hover{
        transition-duration: 300ms;
        box-shadow: 0px 0px 15px #ff16f4;
    }
    .contacts{
        height: 120vh;
        width: 100%;
        display: grid;
        place-content: center;
    }
    .contacts_heading{
        font-size: 34px;
        font-weight: 700;
        color: #ff16f4;
        text-align: center;
    }
    
    form{
        height: 93vh;
        width: 50vw;
        border: 2px solid #ff16f4;
        display: grid;
        place-content: center;
        gap: 20px;
        border-radius: 20px 20px 20px 20px;
    }
    form>p{
        color: white;
        font-size: 28px;
        font-weight: 700;
        text-align: center;
    }
    .fullname,.email{
        height: 12vh;
        width: 40vw;
        color: white;
        font-weight: 500;
        font-size: 14px;
    }
    .fullname>input,.email>input{
        height: 5vh;
        width: 39vw;
        border-radius: 6px 6px 6px 6px;
        border: 1.5px solid white;
        background-color: transparent;
        margin-top: 10px;
        color: white;
        text-indent: 20px;
    }
    .fullname>input:focus,.email>input:focus{
        outline: 1.5px solid #ff16f4;
    }
    .message{
        height: 24vh;
        width: 40vw;
        align-content: center;
        color: white;
        font-size: 14px;
    }
    .message>textarea{
        height: 15vh;
        width: 39vw;
        text-indent: 20px;
        background-color: transparent;
        border-radius: 6px 6px 6px 6px;
        border: 1.5px solid white;
        color: white;
        margin-top: 10px;
    }
    .message>textarea:focus{
        outline: 1.5px solid #ff16f4;
    }
    .submit{
        height: 8vh;
        font-size: 18px;
        font-weight: 600;
        border: 1px solid #ff16f4;
        background-color: #ff16f4;
        border-radius: 10px 10px 10px 10px;
        cursor: pointer;
    }
    .submit:hover{
        transition-duration: 300ms;
        background-color: #d100d9;
        border: 1px solid #d100d9;
    }
    footer{
        height: 40vh;
        width: 100%;
        display: grid;
        place-content: center;
    }
    .footer_heading{
        color: #ff16f4;
        font-size: 30px;
        font-weight: 700;
        text-align: center;
    }
    footer>p{
        color: white;
        text-align: center;
        font-size: 18px;
        margin-top: 20px;
    }
    .footer_links{
        margin-top: 20px;
        display: flex;
        justify-content: space-evenly;
        align-items: center;
    }
    .github_footer{
        color: white;
        font-size: 34px;
        text-decoration: none;
    }
    .x_footer{
        color: white;
        font-size: 34px;
        text-decoration: none;
    }
    .linkedin_footer{
        font-size: 34px;
        color: #5676ff;
        text-decoration: none;
    }
    .email_footer{
        font-size: 30px;
        color: orangered;
        text-decoration: none;
    }
}
@media screen  and (min-width: 617px) and (max-width:647px){
    header{
        height: 80px;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    nav{
        height: 70px;
        width: 100%;
        display: flex;
        justify-content: space-evenly;
        align-items: center;
        backdrop-filter: blur(30px);
        position: fixed;
    }
   /* The side navigation menu */
    .sidenav {
        height: 60vh; /* 100% Full-height */
        width: 0; /* 0 width - change this with JavaScript */
        position: fixed; /* Stay in place */
        z-index: 1; /* Stay on top */
        top: 0; /* Stay at the top */
        left: 0;
        background-color: #111; /* Black*/
        overflow-x: hidden; /* Disable horizontal scroll */
        padding-top: 60px; /* Place content 60px from the top */
        transition: 0.5s; /* 0.5 second transition effect to slide in the sidenav */
        margin-left: 40px;
        border-radius: 18px 18px 18px 18px;
        align-content: center;
    }

    /* The navigation menu links */
    .sidenav a {
        padding: 8px 8px 8px 32px;
        text-decoration: none;
        font-size: 25px;
        color: #818181;
        display: block;
        transition: 0.3s;
        text-align: center;
    }

    /* When you mouse over the navigation links, change their color */
    .sidenav a:hover {
    color: #ff16f4;
    transition-duration: 300ms
    }

    /* Position and style the close button (top right corner) */
    .closebtn {
        position: absolute;
        top: 0;
        right: 25px;
        font-size: 36px;
        margin-left: 50px;
        color: white;
        border: none;
        background-color: transparent;
        cursor: pointer;
    }

    /* Style page content - use this if you want to push the page content to the right when you open the side navigation */
    #main {
    transition: margin-left .5s;
    padding: 20px;
    }
    .sidemenu>i{
        color: white;
        cursor: pointer;
    }
    .logo{
        font-size: 20px;
        font-weight: 700;
        color: white;
    }
    .nav_links{
        display: none;
    }
    .Resume{
        height: 35px;
        width: 13vw;
        border-radius: 18px 18px 18px 18px;
        display: inline-block;
        text-align: center;
        align-content: center;
        text-decoration: none;
        border: 1px solid #ff16f4;
        background-color: #ff16f4;
        color: black;
        font-weight: 600;
    }
    .Resume:hover{
        transition-duration: 150ms;
        box-shadow: 0px 0px 18px #ff16f4;
    }
    section{
        height: 3500px;
        width: 100%;
        border: 2px solid white;
        border-top: none;
        border-left: none;
        border-right: none;
    }
    .About{
        height: 600px;
        width: 100%;
        display: flex;
        justify-content: space-evenly;
        align-items: center;
        flex-wrap: wrap;
    }
    .About_img{
        height: 400px;
        width: 45vw;
    }
    .About_img>img{
        height: 100%;
        width: 100%;
        border-radius: 100px 100px 100px 100px;
    }
    .About_info{
        height: 400px;
        width: 40vw;
    }
    .name{
        font-size: 24px;
        font-weight: 700;
        color: white;
    }
    .job{
        font-size: 24px;
        font-weight: 700;
        color: #ff16f4;
    }
    .info{
        height: 130px;
        width: 100%;
    }
    .info>p{
        color: white;
        font-size: 14px;
        font-weight: 500;
    }
    .profiles{
        text-align: center;
    }
    .github_link{
        font-size: 28px;
        color: white;
    }
    .linkedin_link{
        text-decoration: none;
        font-size: 28px;
        color: #5676ff;
    }
    .x_link{
        text-decoration: none;
        font-size: 28px;
        color: white;
    }
    .download_resume{
        height: 100px;
        width: 100%;
        align-content: center;
        text-align: center;
    }
    .download_resume>a{
        height: 50px;
        width: 24vw;
        display: inline-block;
        align-content: center;
        text-align: center;
        background-color: #d100d9;
        border-radius: 10px 10px 10px 10px;
        text-decoration: none;
        color: black;
        font-weight: 600;
        font-size: 13px;
    }
    .download_resume>a:hover{
        transition-duration: 300ms;
        background-color: #ad00b1;
        box-shadow: 0px 0px 18px #ad00b1;
    }
    .tech_stack{
        height: 400px;
        width: 100%;
        align-content: center;
    }
    .tech_stack_heading{
        color: #ff16f4;
        font-weight: 700;
        text-align: center;
        font-size: 35px;
    }
    .stack_div{
        height: 200px;
        width: 100%;
        display: flex;
        justify-content: space-evenly;
        align-content: center;
        flex-wrap: wrap;
    }
    .html,.css,.javascript,.tailwind,.bootstrap,.php,.mysql{
        height: 100px;
        width: 18vw;
        background-color: transparent;
        border-radius: 8px 8px 8px 8px;
    }
    .html{
        border: 1.5px solid orange;
    }
    .html:hover{
        box-shadow: 0px 0px 20px orange;
        transition-duration: 300ms;
        background-color: #9999993d;
    }
    .html>img{
        height: 29px;
    }
    .html>p{
        color: white;
        font-weight: 600;
    }
    .css{
        border: 1.5px solid blue;
    }
    .css:hover{
        background-color: #9999993d;
        box-shadow: 0px 0px 20px blue;
        transition-duration: 300ms;
    }
    .css>img{
        height: 27px;
    }
    .css>p{
        color: white;
        font-weight: 600;
    }
    .javascript{
        border: 1.5px solid yellow;
    }
    .javascript:hover{
        background-color: #9999993d;
        box-shadow: 0px 0px 20px yellow;
        transition-duration: 300ms;
    }
    .javascript>img{
        height: 29px;
    }
    .javascript>p{
        color: white;
        font-weight: 600;
    }
    .tailwind{
        border: 1.5px solid lightblue;
    }
    .tailwind>img{
        height: 28px;
    }
    .tailwind>p{
        color: white;
        font-weight: 600;
    }
    .tailwind:hover{
        transition-duration: 300ms;
        background-color: #9999993d;
        box-shadow: 0px 0px 20px lightblue;
    }
    .bootstrap{
        border: 1.5px solid #ad00b1;
    }
    .bootstrap:hover{
        background-color: #9999993d;
        box-shadow: 0px 0px 20px #ad00b1;
        transition-duration: 300ms;
    }
    .bootstrap>img{
        height: 28px;
    }
    .bootstrap>p{
        color: white;
        font-weight: 600;
    }
    .php{
        border: 1.5px solid #ff16f4;
    }
    .php:hover{
        transition-duration: 300ms;
        box-shadow: 0px 0px 20px #ff16f4;
        background-color: #9999993d;
    }
    .php>img{
        height: 28px;
    }
    .php>p{
        color: white;
        font-weight: 600;
    }
    .mysql{
        border: 1.5px solid lightskyblue;
    }
    .mysql:hover{
        transition-duration: 300ms;
        box-shadow: 0px 0px 20px lightskyblue;
        background-color: #9999993d;
    }
    .mysql>img{
        height: 28px;
    }
    .mysql>p{
        color: white;
        font-weight: 600;
    }
    .services{
        height: 450px;
        width: 100%;
        align-content: center;
    }
    .services_heading{
        color: #ff16f4;
        font-weight: 700;
        text-align: center;
        font-size: 34px;
    }
    .my_offer{
        height: 360px;
        display: flex;
        justify-content: space-evenly;
        align-items: center;
        flex-wrap: wrap;
    }
    .the_offers{
        height: 140px;
        width: 40vw;
        text-align: center;
        align-content: center;
        border-radius: 8px 8px 8px 8px;
    }
    .the_offers:hover{
        transition-duration: 300ms;
        box-shadow: 0px 0px 20px #ff16f4;
    }
    .the_offers>i{
        font-size: 20px;
        color: #ff16f4;
        text-align: center;
    }
    .the_offers>p{
        font-weight: 600;
        font-size: 18px;
        color: white;
        text-align: center;
    }
    .the_offers>div{
        font-size: 13px;
        color: white;
    }
    .projects{
        height: 700px;
        width: 100%;
        align-content: center;
    }
    .projects_heading{
        font-size: 34px;
        color: #ff16f4;
        font-weight: 700;
        text-align: center;
    }
    .projects_div{
        height: 530px;
        width: 100%;
        display: flex;
        justify-content: space-evenly;
        align-items: center;
    }
    .projects_div>div{
        height: 450px;
        width: 40vw;
        border: 2px solid #ff16f4;
        text-align: center;
        border-radius: 20px 20px 20px 20px;
    }
    .projects_div>div:hover{
        transition-duration: 300ms;
        box-shadow: 0px 0px 30px #ff16f4;
        background-color: #9999993d;
    }
    .project_name{
        font-size: 20px;
        text-align: center;
        font-weight: 700;
        color: #ff16f4;
    }
    .project_img{
        height: 150px;
        width: 100%;
        border-top-left-radius: inherit;
        border-top-right-radius: inherit;
        border-bottom: 2px solid #ff16f4;
    }
    .project_info{
        height: 60px;
        color: white;
        border: 1px solid black;
        text-align: center;
        align-content: center;
        font-size: 14px;
    }
    .project_stack{
        display: flex;
        justify-content: space-evenly;
        flex-wrap: wrap;
        color: white;
        margin-top: 4px;
    }
    .project_stack>p{
        width: 9vw;
        height: 30px;
        border: 1px solid #ff16f4;
        align-content: center;
        border-radius: 18px 18px 18px 18px;
        background-color: #ff16f4;
        font-size: 12px;
        box-shadow: 3px 3px 0px white;
        font-weight: 600;
    }
   
    .project_links{
        display: flex;
        justify-content: space-evenly;
        margin-top: 10px;
    }
    .github_repo{
        height: 30px;
        width: 10vw;
        transition-duration: 300ms;
        text-align: center;
        align-content: center;
        color: black;
        background-color: white;
        text-decoration: none;
        display: inline-block;
        border-radius: 8px 8px 8px 8px;
        border: 1px solid white;
        display: flex;
        align-items: center;
        justify-content: space-evenly;
        font-size: 13px;
        font-weight: 600;
    }
    .github_repo:hover{
        border: 1px solid #b0b0b0;
        background-color: #b0b0b0;
    }
    .demo{
        background-color: #ff16f4;
        color: black;
        display: inline-block;
        width: 10vw;
        height: 30px;
        text-decoration: none;
        text-align: center;
        align-content: center;
        border-radius: 8px 8px 8px 8px;
        font-weight: 600;
    }
    .demo:hover{
        transition-duration: 300ms;
        border: 1px solid purple;
        background-color: purple;
    }
    .certifications{
        height: 500px;
        width: 100%;
        align-content: center;
    }
    .certifications_heading{
        color: #ff16f4;
        font-weight: 700;
        font-size: 34px;
        text-align: center;
    }
    .certifications_div{
        height: 350px;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-evenly;
    }
    .certificates{
        height: 250px;
        width: 36vw;
        border-radius: 20px 20px 20px 20px;
        text-align: center;
        align-content: center;
    }
    .certificates:hover{
        transition-duration: 300ms;
        box-shadow: 0px 0px 25px #ff16f4;
    }
    .certificate_name{
        color: #ff16f4;
        font-weight: 600;
        font-size: 16px;
    }
    .platform{
        color: white;
        font-weight: 600;
        font-size: 16px;
    }
    .view_certificate{
        height: 80px;
        width: 100%;
        align-content: center;
    }
    
    .view_certificate>a{
        height: 35px;
        width: 10vw;
        border: 1px solid #ff16f4;
        background-color: #ff16f4;
        color: black;
        display: inline-block;
        align-content: center;
        border-radius: 10px 10px 10px 10px;
        text-decoration: none;
        font-weight: 600;
    }
    .view_certificate>a:hover{
        transition: 300ms;
        box-shadow: 0px 0px 10px #ff16f4;
    }
    .contacts{
        height: 800px;
        width: 100%;
        display: grid;
        place-content: center;
    }
    .contacts_heading{
        font-size: 34px;
        font-weight: 700;
        color: #ff16f4;
        text-align: center;
    }
    
    form{
        height: 600px;
        width: 50vw;
        border: 2px solid #ff16f4;
        display: grid;
        place-content: center;
        gap: 20px;
        border-radius: 20px 20px 20px 20px;
    }
    form>p{
        color: white;
        font-size: 28px;
        font-weight: 700;
        text-align: center;
    }
    .fullname,.email{
        height: 80px;
        width: 40vw;
        color: white;
        font-weight: 500;
    }
    .fullname>input,.email>input{
        height: 40px;
        width: 39vw;
        border-radius: 6px 6px 6px 6px;
        border: 1.5px solid white;
        background-color: transparent;
        margin-top: 10px;
        color: white;
        text-indent: 20px;
    }
    .fullname>input:focus,.email>input:focus{
        outline: 1.5px solid #ff16f4;
    }
    .message{
        height: 130px;
        width: 40vw;
        align-content: center;
        color: white;
    }
    .message>textarea{
        height: 85px;
        width: 39vw;
        text-indent: 20px;
        background-color: transparent;
        border-radius: 6px 6px 6px 6px;
        border: 1.5px solid white;
        color: white;
        margin-top: 10px;
    }
    .message>textarea:focus{
        outline: 1.5px solid #ff16f4;
    }
    .submit{
        height: 50px;
        font-size: 20px;
        font-weight: 600;
        border: 1px solid #ff16f4;
        background-color: #ff16f4;
        border-radius: 10px 10px 10px 10px;
        cursor: pointer;
    }
    .submit:hover{
        transition-duration: 300ms;
        background-color: #d100d9;
        border: 1px solid #d100d9;
    }
    footer{
        height: 300px;
        width: 100%;
        display: grid;
        place-content: center;
    }
    .footer_heading{
        color: #ff16f4;
        font-size: 30px;
        font-weight: 700;
        text-align: center;
    }
    footer>p{
        color: white;
        text-align: center;
        font-size: 18px;
        margin-top: 20px;
    }
    .footer_links{
        margin-top: 20px;
        display: flex;
        justify-content: space-evenly;
        align-items: center;
    }
    .github_footer{
        color: white;
        font-size: 34px;
        text-decoration: none;
    }
    .x_footer{
        color: white;
        font-size: 34px;
        text-decoration: none;
    }
    .linkedin_footer{
        font-size: 34px;
        color: #5676ff;
        text-decoration: none;
    }
    .email_footer{
        color: orangered;
        text-decoration: none;
        font-size: 34px;
    }
}
@media screen and (min-width:648px) and (max-width:698px){
    header{
        height: 80px;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    nav{
        height: 70px;
        width: 100%;
        display: flex;
        justify-content: space-evenly;
        align-items: center;
        backdrop-filter: blur(30px);
        position: fixed;
    }
   /* The side navigation menu */
    .sidenav {
        height: 300px; /* 100% Full-height */
        width: 0; /* 0 width - change this with JavaScript */
        position: fixed; /* Stay in place */
        z-index: 1; /* Stay on top */
        top: 0; /* Stay at the top */
        left: 0;
        background-color: #111; /* Black*/
        overflow-x: hidden; /* Disable horizontal scroll */
        padding-top: 60px; /* Place content 60px from the top */
        transition: 0.5s; /* 0.5 second transition effect to slide in the sidenav */
        margin-left: 40px;
        border-radius: 18px 18px 18px 18px;
        align-content: center;
    }

    /* The navigation menu links */
    .sidenav a {
        padding: 8px 8px 8px 32px;
        text-decoration: none;
        font-size: 25px;
        color: #818181;
        display: block;
        transition: 0.3s;
        text-align: center;
    }

    /* When you mouse over the navigation links, change their color */
    .sidenav a:hover {
    color: #ff16f4;
    transition-duration: 300ms
    }

    /* Position and style the close button (top right corner) */
    .closebtn {
        position: absolute;
        top: 0;
        right: 25px;
        font-size: 36px;
        margin-left: 50px;
        color: white;
        border: none;
        background-color: transparent;
        cursor: pointer;
    }

    /* Style page content - use this if you want to push the page content to the right when you open the side navigation */
    #main {
    transition: margin-left .5s;
    padding: 20px;
    }
    .sidemenu>i{
        color: white;
        cursor: pointer;
    }
    .logo{
        font-size: 20px;
        font-weight: 700;
        color: white;
    }
    .nav_links{
        display: none;
    }
    .Resume{
        height: 35px;
        width: 13vw;
        border-radius: 18px 18px 18px 18px;
        display: inline-block;
        text-align: center;
        align-content: center;
        text-decoration: none;
        border: 1px solid #ff16f4;
        background-color: #ff16f4;
        color: black;
        font-weight: 600;
    }
    .Resume:hover{
        transition-duration: 150ms;
        box-shadow: 0px 0px 18px #ff16f4;
    }
    section{
        height: 3500px;
        width: 100%;
        border: 2px solid white;
        border-top: none;
        border-left: none;
        border-right: none;
    }
    .About{
        height: 600px;
        width: 100%;
        display: flex;
        justify-content: space-evenly;
        align-items: center;
    }
    .About_img{
        height: 400px;
        width: 36vw;
    }
    .About_img>img{
        height: 100%;
        width: 100%;
        border-radius: 100px 100px 100px 100px;
    }
    .About_info{
        height: 400px;
        width: 40vw;
    }
    .name{
        font-size: 24px;
        font-weight: 700;
        color: white;
    }
    .job{
        font-size: 24px;
        font-weight: 700;
        color: #ff16f4;
    }
    .info{
        height: 130px;
        width: 100%;
    }
    .info>p{
        color: white;
        font-size: 14px;
        font-weight: 500;
    }
    .profiles{
        text-align: center;
    }
    .github_link{
        font-size: 28px;
        color: white;
    }
    .linkedin_link{
        text-decoration: none;
        font-size: 28px;
        color: #5676ff;
    }
    .x_link{
        text-decoration: none;
        font-size: 28px;
        color: white;
    }
    .download_resume{
        height: 100px;
        width: 100%;
        align-content: center;
        text-align: center;
    }
    .download_resume>a{
        height: 50px;
        width: 24vw;
        display: inline-block;
        align-content: center;
        text-align: center;
        background-color: #d100d9;
        border-radius: 10px 10px 10px 10px;
        text-decoration: none;
        color: black;
        font-weight: 600;
        font-size: 13px;
    }
    .download_resume>a:hover{
        transition-duration: 300ms;
        background-color: #ad00b1;
        box-shadow: 0px 0px 18px #ad00b1;
    }
    .tech_stack{
        height: 400px;
        width: 100%;
        align-content: center;
    }
    .tech_stack_heading{
        color: #ff16f4;
        font-weight: 700;
        text-align: center;
        font-size: 35px;
    }
    .stack_div{
        height: 200px;
        width: 100%;
        display: flex;
        justify-content: space-evenly;
        align-content: center;
        flex-wrap: wrap;
    }
    .html,.css,.javascript,.tailwind,.bootstrap,.php,.mysql{
        height: 100px;
        width: 16vw;
        background-color: transparent;
        border-radius: 8px 8px 8px 8px;
    }
    .html{
        border: 1.5px solid orange;
    }
    .html:hover{
        box-shadow: 0px 0px 20px orange;
        transition-duration: 300ms;
        background-color: #9999993d;
    }
    .html>img{
        height: 29px;
    }
    .html>p{
        color: white;
        font-weight: 600;
    }
    .css{
        border: 1.5px solid blue;
    }
    .css:hover{
        background-color: #9999993d;
        box-shadow: 0px 0px 20px blue;
        transition-duration: 300ms;
    }
    .css>img{
        height: 27px;
    }
    .css>p{
        color: white;
        font-weight: 600;
    }
    .javascript{
        border: 1.5px solid yellow;
    }
    .javascript:hover{
        background-color: #9999993d;
        box-shadow: 0px 0px 20px yellow;
        transition-duration: 300ms;
    }
    .javascript>img{
        height: 29px;
    }
    .javascript>p{
        color: white;
        font-weight: 600;
    }
    .tailwind{
        border: 1.5px solid lightblue;
    }
    .tailwind>img{
        height: 28px;
    }
    .tailwind>p{
        color: white;
        font-weight: 600;
    }
    .tailwind:hover{
        transition-duration: 300ms;
        background-color: #9999993d;
        box-shadow: 0px 0px 20px lightblue;
    }
    .bootstrap{
        border: 1.5px solid #ad00b1;
    }
    .bootstrap:hover{
        background-color: #9999993d;
        box-shadow: 0px 0px 20px #ad00b1;
        transition-duration: 300ms;
    }
    .bootstrap>img{
        height: 28px;
    }
    .bootstrap>p{
        color: white;
        font-weight: 600;
    }
    .php{
        border: 1.5px solid #ff16f4;
    }
    .php:hover{
        transition-duration: 300ms;
        box-shadow: 0px 0px 20px #ff16f4;
        background-color: #9999993d;
    }
    .php>img{
        height: 28px;
    }
    .php>p{
        color: white;
        font-weight: 600;
    }
    .mysql{
        border: 1.5px solid lightskyblue;
    }
    .mysql:hover{
        transition-duration: 300ms;
        box-shadow: 0px 0px 20px lightskyblue;
        background-color: #9999993d;
    }
    .mysql>img{
        height: 28px;
    }
    .mysql>p{
        color: white;
        font-weight: 600;
    }
    .services{
        height: 450px;
        width: 100%;
        align-content: center;
    }
    .services_heading{
        color: #ff16f4;
        font-weight: 700;
        text-align: center;
        font-size: 34px;
    }
    .my_offer{
        height: 360px;
        display: flex;
        justify-content: space-evenly;
        align-items: center;
        flex-wrap: wrap;
    }
    .the_offers{
        height: 140px;
        width: 40vw;
        text-align: center;
        align-content: center;
        border-radius: 8px 8px 8px 8px;
    }
    .the_offers:hover{
        transition-duration: 300ms;
        box-shadow: 0px 0px 20px #ff16f4;
    }
    .the_offers>i{
        font-size: 20px;
        color: #ff16f4;
        text-align: center;
    }
    .the_offers>p{
        font-weight: 600;
        font-size: 18px;
        color: white;
        text-align: center;
    }
    .the_offers>div{
        font-size: 13px;
        color: white;
    }
    .projects{
        height: 700px;
        width: 100%;
        align-content: center;
    }
    .projects_heading{
        font-size: 34px;
        color: #ff16f4;
        font-weight: 700;
        text-align: center;
    }
    .projects_div{
        height: 530px;
        width: 100%;
        display: flex;
        justify-content: space-evenly;
        align-items: center;
    }
    .projects_div>div{
        height: 450px;
        width: 40vw;
        border: 2px solid #ff16f4;
        text-align: center;
        border-radius: 20px 20px 20px 20px;
    }
    .projects_div>div:hover{
        transition-duration: 300ms;
        box-shadow: 0px 0px 30px #ff16f4;
        background-color: #9999993d;
    }
    .project_name{
        font-size: 20px;
        text-align: center;
        font-weight: 700;
        color: #ff16f4;
    }
    .project_img{
        height: 150px;
        width: 100%;
        border-top-left-radius: inherit;
        border-top-right-radius: inherit;
        border-bottom: 2px solid #ff16f4;
    }
    .project_info{
        height: 60px;
        color: white;
        border: 1px solid black;
        text-align: center;
        align-content: center;
        font-size: 14px;
    }
    .project_stack{
        display: flex;
        justify-content: space-evenly;
        flex-wrap: wrap;
        color: white;
        margin-top: 4px;
    }
    .project_stack>p{
        width: 9vw;
        height: 30px;
        border: 1px solid #ff16f4;
        align-content: center;
        border-radius: 18px 18px 18px 18px;
        background-color: #ff16f4;
        font-size: 12px;
        box-shadow: 3px 3px 0px white;
        font-weight: 600;
    }
   
    .project_links{
        display: flex;
        justify-content: space-evenly;
        margin-top: 10px;
    }
    .github_repo{
        height: 30px;
        width: 10vw;
        transition-duration: 300ms;
        text-align: center;
        align-content: center;
        color: black;
        background-color: white;
        text-decoration: none;
        display: inline-block;
        border-radius: 8px 8px 8px 8px;
        border: 1px solid white;
        display: flex;
        align-items: center;
        justify-content: space-evenly;
        font-size: 13px;
        font-weight: 600;
    }
    .github_repo:hover{
        border: 1px solid #b0b0b0;
        background-color: #b0b0b0;
    }
    .demo{
        background-color: #ff16f4;
        color: black;
        display: inline-block;
        width: 10vw;
        height: 30px;
        text-decoration: none;
        text-align: center;
        align-content: center;
        border-radius: 8px 8px 8px 8px;
        font-weight: 600;
    }
    .demo:hover{
        transition-duration: 300ms;
        border: 1px solid purple;
        background-color: purple;
    }
    .certifications{
        height: 500px;
        width: 100%;
        align-content: center;
    }
    .certifications_heading{
        color: #ff16f4;
        font-weight: 700;
        font-size: 34px;
        text-align: center;
    }
    .certifications_div{
        height: 350px;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-evenly;
    }
    .certificates{
        height: 250px;
        width: 36vw;
        border-radius: 20px 20px 20px 20px;
        text-align: center;
        align-content: center;
    }
    .certificates:hover{
        transition-duration: 300ms;
        box-shadow: 0px 0px 25px #ff16f4;
    }
    .certificate_name{
        color: #ff16f4;
        font-weight: 600;
        font-size: 16px;
    }
    .platform{
        color: white;
        font-weight: 600;
        font-size: 16px;
    }
    .view_certificate{
        height: 80px;
        width: 100%;
        align-content: center;
    }
    
    .view_certificate>a{
        height: 35px;
        width: 10vw;
        border: 1px solid #ff16f4;
        background-color: #ff16f4;
        color: black;
        display: inline-block;
        align-content: center;
        border-radius: 10px 10px 10px 10px;
        text-decoration: none;
        font-weight: 600;
    }
    .view_certificate>a:hover{
        transition: 300ms;
        box-shadow: 0px 0px 10px #ff16f4;
    }
    .contacts{
        height: 800px;
        width: 100%;
        display: grid;
        place-content: center;
    }
    .contacts_heading{
        font-size: 34px;
        font-weight: 700;
        color: #ff16f4;
        text-align: center;
    }
    
    form{
        height: 600px;
        width: 50vw;
        border: 2px solid #ff16f4;
        display: grid;
        place-content: center;
        gap: 20px;
        border-radius: 20px 20px 20px 20px;
    }
    form>p{
        color: white;
        font-size: 28px;
        font-weight: 700;
        text-align: center;
    }
    .fullname,.email{
        height: 80px;
        width: 40vw;
        color: white;
        font-weight: 500;
    }
    .fullname>input,.email>input{
        height: 40px;
        width: 39vw;
        border-radius: 6px 6px 6px 6px;
        border: 1.5px solid white;
        background-color: transparent;
        margin-top: 10px;
        color: white;
        text-indent: 20px;
    }
    .fullname>input:focus,.email>input:focus{
        outline: 1.5px solid #ff16f4;
    }
    .message{
        height: 130px;
        width: 40vw;
        align-content: center;
        color: white;
    }
    .message>textarea{
        height: 85px;
        width: 39vw;
        text-indent: 20px;
        background-color: transparent;
        border-radius: 6px 6px 6px 6px;
        border: 1.5px solid white;
        color: white;
        margin-top: 10px;
    }
    .message>textarea:focus{
        outline: 1.5px solid #ff16f4;
    }
    .submit{
        height: 50px;
        font-size: 20px;
        font-weight: 600;
        border: 1px solid #ff16f4;
        background-color: #ff16f4;
        border-radius: 10px 10px 10px 10px;
        cursor: pointer;
    }
    .submit:hover{
        transition-duration: 300ms;
        background-color: #d100d9;
        border: 1px solid #d100d9;
    }
    footer{
        height: 300px;
        width: 100%;
        display: grid;
        place-content: center;
    }
    .footer_heading{
        color: #ff16f4;
        font-size: 30px;
        font-weight: 700;
        text-align: center;
    }
    footer>p{
        color: white;
        text-align: center;
        font-size: 18px;
        margin-top: 20px;
    }
    .footer_links{
        margin-top: 20px;
        display: flex;
        justify-content: space-evenly;
        align-items: center;
    }
    .github_footer{
        color: white;
        font-size: 34px;
        text-decoration: none;
    }
    .x_footer{
        color: white;
        font-size: 34px;
        text-decoration: none;
    }
    .linkedin_footer{
        font-size: 34px;
        color: #5676ff;
        text-decoration: none;
    }
    .email_footer{
        color: orangered;
        text-decoration: none;
        font-size: 34px;
    }
}
@media screen and (min-width:699px) and (max-width:749px){
    header{
        height: 80px;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    nav{
        height: 70px;
        width: 100%;
        display: flex;
        justify-content: space-evenly;
        align-items: center;
        backdrop-filter: blur(30px);
        position: fixed;
    }
    .sidenav{
        position: fixed;
        z-index: 1;
        height: 70vh;
        width: 30vw;
        border-radius: 18px 18px 18px 18px;
        margin-left: -130px;
        background-color: black;
        display: none;
        place-content: center;
        gap: 10px;
        transition-duration: 300ms;
    }
    .sidenav>a{
        border: 1px solid black;
        color: white;
        display: inline-block;
        width: 20vw;
        height: 8vh;
        text-align: center;
        align-content: center;
        text-decoration: none;
        border-radius: 18px 18px 18px 18px;
        font-weight: 600;
    }
    .sidenav>a:hover{
        transition-duration: 300ms;
        background-color: #ff16f4;
        border: 1px solid #ff16f4;
        color: black;
        box-shadow: 0px 0px 20px #ff16f4;
    }
    .sidemenu{
        color: white;
    }
    .closebtn{
        text-align: end;
    }
    .closebtn>a{
        font-size: 30px;
        color: white;
        text-decoration: none;
    }
    .logo{
        font-size: 20px;
        font-weight: 700;
        color: white;
    }
    .nav_links{
        display: none;
    }
    .Resume{
        height: 35px;
        width: 13vw;
        border-radius: 18px 18px 18px 18px;
        display: inline-block;
        text-align: center;
        align-content: center;
        text-decoration: none;
        border: 1px solid #ff16f4;
        background-color: #ff16f4;
        color: black;
        font-weight: 600;
    }
    .Resume:hover{
        transition-duration: 150ms;
        box-shadow: 0px 0px 18px #ff16f4;
    }
    section{
        height: 3500px;
        width: 100%;
        border: 2px solid white;
        border-top: none;
        border-left: none;
        border-right: none;
    }
    .About{
        height: 600px;
        width: 100%;
        display: flex;
        justify-content: space-evenly;
        align-items: center;
        flex-wrap: wrap;
    }
    .About_img{
        height: 400px;
        width: 36vw;
    }
    .About_img>img{
        height: 100%;
        width: 100%;
        border-radius: 100px 100px 100px 100px;
    }
    .About_info{
        height: 400px;
        width: 40vw;
    }
    .name{
        font-size: 26px;
        font-weight: 700;
        color: white;
    }
    .job{
        font-size: 26px;
        font-weight: 700;
        color: #ff16f4;
    }
    .info{
        height: 130px;
        width: 100%;
    }
    .info>p{
        color: white;
        font-size: 16px;
        font-weight: 500;
    }
    .profiles{
        text-align: center;
    }
    .github_link{
        font-size: 28px;
        color: white;
    }
    .linkedin_link{
        text-decoration: none;
        font-size: 28px;
        color: #5676ff;
    }
    .x_link{
        text-decoration: none;
        font-size: 28px;
        color: white;
    }
    .download_resume{
        height: 100px;
        width: 100%;
        align-content: center;
        text-align: center;
    }
    .download_resume>a{
        height: 50px;
        width: 20vw;
        display: inline-block;
        align-content: center;
        text-align: center;
        background-color: #d100d9;
        border-radius: 10px 10px 10px 10px;
        text-decoration: none;
        color: black;
        font-weight: 600;
        font-size: 13px;
    }
    .download_resume>a:hover{
        transition-duration: 300ms;
        background-color: #ad00b1;
        box-shadow: 0px 0px 18px #ad00b1;
    }
    .tech_stack{
        height: 400px;
        width: 100%;
        align-content: center;
    }
    .tech_stack_heading{
        color: #ff16f4;
        font-weight: 700;
        text-align: center;
        font-size: 35px;
    }
    .stack_div{
        height: 200px;
        width: 100%;
        display: flex;
        justify-content: space-evenly;
        align-content: center;
        flex-wrap: wrap;
    }
    .html,.css,.javascript,.tailwind,.bootstrap,.php,.mysql{
        height: 100px;
        width: 16vw;
        background-color: transparent;
        border-radius: 8px 8px 8px 8px;
    }
    .html{
        border: 1.5px solid orange;
    }
    .html:hover{
        box-shadow: 0px 0px 20px orange;
        transition-duration: 300ms;
        background-color: #9999993d;
    }
    .html>img{
        height: 29px;
    }
    .html>p{
        color: white;
        font-weight: 600;
    }
    .css{
        border: 1.5px solid blue;
    }
    .css:hover{
        background-color: #9999993d;
        box-shadow: 0px 0px 20px blue;
        transition-duration: 300ms;
    }
    .css>img{
        height: 27px;
    }
    .css>p{
        color: white;
        font-weight: 600;
    }
    .javascript{
        border: 1.5px solid yellow;
    }
    .javascript:hover{
        background-color: #9999993d;
        box-shadow: 0px 0px 20px yellow;
        transition-duration: 300ms;
    }
    .javascript>img{
        height: 29px;
    }
    .javascript>p{
        color: white;
        font-weight: 600;
    }
    .tailwind{
        border: 1.5px solid lightblue;
    }
    .tailwind>img{
        height: 28px;
    }
    .tailwind>p{
        color: white;
        font-weight: 600;
    }
    .tailwind:hover{
        transition-duration: 300ms;
        background-color: #9999993d;
        box-shadow: 0px 0px 20px lightblue;
    }
    .bootstrap{
        border: 1.5px solid #ad00b1;
    }
    .bootstrap:hover{
        background-color: #9999993d;
        box-shadow: 0px 0px 20px #ad00b1;
        transition-duration: 300ms;
    }
    .bootstrap>img{
        height: 28px;
    }
    .bootstrap>p{
        color: white;
        font-weight: 600;
    }
    .php{
        border: 1.5px solid #ff16f4;
    }
    .php:hover{
        transition-duration: 300ms;
        box-shadow: 0px 0px 20px #ff16f4;
        background-color: #9999993d;
    }
    .php>img{
        height: 28px;
    }
    .php>p{
        color: white;
        font-weight: 600;
    }
    .mysql{
        border: 1.5px solid lightskyblue;
    }
    .mysql:hover{
        transition-duration: 300ms;
        box-shadow: 0px 0px 20px lightskyblue;
        background-color: #9999993d;
    }
    .mysql>img{
        height: 28px;
    }
    .mysql>p{
        color: white;
        font-weight: 600;
    }
    .services{
        height: 450px;
        width: 100%;
        align-content: center;
    }
    .services_heading{
        color: #ff16f4;
        font-weight: 700;
        text-align: center;
        font-size: 34px;
    }
    .my_offer{
        height: 360px;
        display: flex;
        justify-content: space-evenly;
        align-items: center;
        flex-wrap: wrap;
    }
    .the_offers{
        height: 140px;
        width: 40vw;
        text-align: center;
        align-content: center;
        border-radius: 8px 8px 8px 8px;
    }
    .the_offers:hover{
        transition-duration: 300ms;
        box-shadow: 0px 0px 20px #ff16f4;
    }
    .the_offers>i{
        font-size: 20px;
        color: #ff16f4;
        text-align: center;
    }
    .the_offers>p{
        font-weight: 600;
        font-size: 18px;
        color: white;
        text-align: center;
    }
    .the_offers>div{
        font-size: 13px;
        color: white;
    }
    .projects{
        height: 700px;
        width: 100%;
        align-content: center;
    }
    .projects_heading{
        font-size: 34px;
        color: #ff16f4;
        font-weight: 700;
        text-align: center;
    }
    .projects_div{
        height: 530px;
        width: 100%;
        display: flex;
        justify-content: space-evenly;
        align-items: center;
    }
    .projects_div>div{
        height: 450px;
        width: 40vw;
        border: 2px solid #ff16f4;
        text-align: center;
        border-radius: 20px 20px 20px 20px;
    }
    .projects_div>div:hover{
        transition-duration: 300ms;
        box-shadow: 0px 0px 30px #ff16f4;
        background-color: #9999993d;
    }
    .project_name{
        font-size: 20px;
        text-align: center;
        font-weight: 700;
        color: #ff16f4;
    }
    .project_img{
        height: 150px;
        width: 100%;
        border-top-left-radius: inherit;
        border-top-right-radius: inherit;
        border-bottom: 2px solid #ff16f4;
    }
    .project_info{
        height: 60px;
        color: white;
        border: 1px solid black;
        text-align: center;
        align-content: center;
        font-size: 14px;
    }
    .project_stack{
        display: flex;
        justify-content: space-evenly;
        flex-wrap: wrap;
        color: white;
        margin-top: 4px;
    }
    .project_stack>p{
        width: 9vw;
        height: 30px;
        border: 1px solid #ff16f4;
        align-content: center;
        border-radius: 18px 18px 18px 18px;
        background-color: #ff16f4;
        font-size: 12px;
        box-shadow: 3px 3px 0px white;
        font-weight: 600;
    }
   
    .project_links{
        display: flex;
        justify-content: space-evenly;
        margin-top: 10px;
    }
    .github_repo{
        height: 30px;
        width: 10vw;
        transition-duration: 300ms;
        text-align: center;
        align-content: center;
        color: black;
        background-color: white;
        text-decoration: none;
        display: inline-block;
        border-radius: 8px 8px 8px 8px;
        border: 1px solid white;
        display: flex;
        align-items: center;
        justify-content: space-evenly;
        font-size: 13px;
        font-weight: 600;
    }
    .github_repo:hover{
        border: 1px solid #b0b0b0;
        background-color: #b0b0b0;
    }
    .demo{
        background-color: #ff16f4;
        color: black;
        display: inline-block;
        width: 10vw;
        height: 30px;
        text-decoration: none;
        text-align: center;
        align-content: center;
        border-radius: 8px 8px 8px 8px;
        font-weight: 600;
    }
    .demo:hover{
        transition-duration: 300ms;
        border: 1px solid purple;
        background-color: purple;
    }
    .certifications{
        height: 500px;
        width: 100%;
        align-content: center;
    }
    .certifications_heading{
        color: #ff16f4;
        font-weight: 700;
        font-size: 34px;
        text-align: center;
    }
    .certifications_div{
        height: 350px;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-evenly;
    }
    .certificates{
        height: 250px;
        width: 36vw;
        border-radius: 20px 20px 20px 20px;
        text-align: center;
        align-content: center;
    }
    .certificates:hover{
        transition-duration: 300ms;
        box-shadow: 0px 0px 25px #ff16f4;
    }
    .certificate_name{
        color: #ff16f4;
        font-weight: 600;
        font-size: 16px;
    }
    .platform{
        color: white;
        font-weight: 600;
        font-size: 16px;
    }
    .view_certificate{
        height: 80px;
        width: 100%;
        align-content: center;
    }
    
    .view_certificate>a{
        height: 35px;
        width: 10vw;
        border: 1px solid #ff16f4;
        background-color: #ff16f4;
        color: black;
        display: inline-block;
        align-content: center;
        border-radius: 10px 10px 10px 10px;
        text-decoration: none;
        font-weight: 600;
    }
    .view_certificate>a:hover{
        transition: 300ms;
        box-shadow: 0px 0px 10px #ff16f4;
    }
    .contacts{
        height: 800px;
        width: 100%;
        display: grid;
        place-content: center;
    }
    .contacts_heading{
        font-size: 34px;
        font-weight: 700;
        color: #ff16f4;
        text-align: center;
    }
    
    form{
        height: 600px;
        width: 50vw;
        border: 2px solid #ff16f4;
        display: grid;
        place-content: center;
        gap: 20px;
        border-radius: 20px 20px 20px 20px;
    }
    form>p{
        color: white;
        font-size: 28px;
        font-weight: 700;
        text-align: center;
    }
    .fullname,.email{
        height: 80px;
        width: 40vw;
        color: white;
        font-weight: 500;
    }
    .fullname>input,.email>input{
        height: 40px;
        width: 39vw;
        border-radius: 6px 6px 6px 6px;
        border: 1.5px solid white;
        background-color: transparent;
        margin-top: 10px;
        color: white;
        text-indent: 20px;
    }
    .fullname>input:focus,.email>input:focus{
        outline: 1.5px solid #ff16f4;
    }
    .message{
        height: 130px;
        width: 40vw;
        align-content: center;
        color: white;
    }
    .message>textarea{
        height: 85px;
        width: 39vw;
        text-indent: 20px;
        background-color: transparent;
        border-radius: 6px 6px 6px 6px;
        border: 1.5px solid white;
        color: white;
        margin-top: 10px;
    }
    .message>textarea:focus{
        outline: 1.5px solid #ff16f4;
    }
    .submit{
        height: 50px;
        font-size: 20px;
        font-weight: 600;
        border: 1px solid #ff16f4;
        background-color: #ff16f4;
        border-radius: 10px 10px 10px 10px;
        cursor: pointer;
    }
    .submit:hover{
        transition-duration: 300ms;
        background-color: #d100d9;
        border: 1px solid #d100d9;
    }
    footer{
        height: 300px;
        width: 100%;
        display: grid;
        place-content: center;
    }
    .footer_heading{
        color: #ff16f4;
        font-size: 30px;
        font-weight: 700;
        text-align: center;
    }
    footer>p{
        color: white;
        text-align: center;
        font-size: 18px;
        margin-top: 20px;
    }
    .footer_links{
        margin-top: 20px;
        display: flex;
        justify-content: space-evenly;
        align-items: center;
    }
    .github_footer{
        color: white;
        font-size: 34px;
        text-decoration: none;
    }
    .x_footer{
        color: white;
        font-size: 34px;
        text-decoration: none;
    }
    .linkedin_footer{
        font-size: 34px;
        color: #5676ff;
        text-decoration: none;
    }
    .email_footer{
        color: orangered;
        text-decoration: none;
        font-size: 34px;
    }
}
@media screen and (min-width:750px) and (max-width:800px){
    header{
        height: 80px;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    nav{
        height: 70px;
        width: 100%;
        display: flex;
        justify-content: space-evenly;
        align-items: center;
        backdrop-filter: blur(30px);
        position: fixed;
    }
    .sidenav{
        position: fixed;
        z-index: 1;
        height: 70vh;
        width: 30vw;
        border-radius: 18px 18px 18px 18px;
        margin-left: -130px;
        background-color: black;
        display: none;
        place-content: center;
        gap: 10px;
        transition-duration: 300ms;
    }
    .sidenav>a{
        border: 1px solid black;
        color: white;
        display: inline-block;
        width: 20vw;
        height: 8vh;
        text-align: center;
        align-content: center;
        text-decoration: none;
        border-radius: 18px 18px 18px 18px;
        font-weight: 600;
    }
    .sidenav>a:hover{
        transition-duration: 300ms;
        background-color: #ff16f4;
        border: 1px solid #ff16f4;
        color: black;
        box-shadow: 0px 0px 20px #ff16f4;
    }
    .sidemenu{
        color: white;
    }
    .closebtn{
        text-align: end;
    }
    .closebtn>a{
        font-size: 30px;
        color: white;
        text-decoration: none;
    }
    .logo{
        font-size: 20px;
        font-weight: 700;
        color: white;
    }
    .nav_links{
        display: none;
    }
    .Resume{
        height: 35px;
        width: 13vw;
        border-radius: 18px 18px 18px 18px;
        display: inline-block;
        text-align: center;
        align-content: center;
        text-decoration: none;
        border: 1px solid #ff16f4;
        background-color: #ff16f4;
        color: black;
        font-weight: 600;
    }
    .Resume:hover{
        transition-duration: 150ms;
        box-shadow: 0px 0px 18px #ff16f4;
    }
    section{
        height: 3500px;
        width: 100%;
        border: 2px solid white;
        border-top: none;
        border-left: none;
        border-right: none;
    }
    .About{
        height: 600px;
        width: 100%;
        display: flex;
        justify-content: space-evenly;
        align-items: center;
    }
    .About_img{
        height: 400px;
        width: 36vw;
    }
    .About_img>img{
        height: 100%;
        width: 100%;
        border-radius: 100px 100px 100px 100px;
    }
    .About_info{
        height: 400px;
        width: 40vw;
    }
    .name{
        font-size: 26px;
        font-weight: 700;
        color: white;
    }
    .job{
        font-size: 26px;
        font-weight: 700;
        color: #ff16f4;
    }
    .info{
        height: 130px;
        width: 100%;
    }
    .info>p{
        color: white;
        font-size: 16px;
        font-weight: 500;
    }
    .profiles{
        text-align: center;
    }
    .github_link{
        font-size: 28px;
        color: white;
    }
    .linkedin_link{
        text-decoration: none;
        font-size: 28px;
        color: #5676ff;
    }
    .x_link{
        text-decoration: none;
        font-size: 28px;
        color: white;
    }
    .download_resume{
        height: 100px;
        width: 100%;
        align-content: center;
        text-align: center;
    }
    .download_resume>a{
        height: 50px;
        width: 18vw;
        display: inline-block;
        align-content: center;
        text-align: center;
        background-color: #d100d9;
        border-radius: 10px 10px 10px 10px;
        text-decoration: none;
        color: black;
        font-weight: 600;
        font-size: 13px;
    }
    .download_resume>a:hover{
        transition-duration: 300ms;
        background-color: #ad00b1;
        box-shadow: 0px 0px 18px #ad00b1;
    }
    .tech_stack{
        height: 350px;
        width: 100%;
        align-content: center;
    }
    .tech_stack_heading{
        color: #ff16f4;
        font-weight: 700;
        text-align: center;
        font-size: 35px;
    }
    .stack_div{
        height: 200px;
        width: 100%;
        display: flex;
        justify-content: space-evenly;
        align-content: center;
        flex-wrap: wrap;
    }
    .html,.css,.javascript,.tailwind,.bootstrap,.php,.mysql{
        height: 100px;
        width: 12vw;
        background-color: transparent;
        border-radius: 8px 8px 8px 8px;
    }
    .html{
        border: 1.5px solid orange;
    }
    .html:hover{
        box-shadow: 0px 0px 20px orange;
        transition-duration: 300ms;
        background-color: #9999993d;
    }
    .html>img{
        height: 29px;
    }
    .html>p{
        color: white;
        font-weight: 600;
    }
    .css{
        border: 1.5px solid blue;
    }
    .css:hover{
        background-color: #9999993d;
        box-shadow: 0px 0px 20px blue;
        transition-duration: 300ms;
    }
    .css>img{
        height: 27px;
    }
    .css>p{
        color: white;
        font-weight: 600;
    }
    .javascript{
        border: 1.5px solid yellow;
    }
    .javascript:hover{
        background-color: #9999993d;
        box-shadow: 0px 0px 20px yellow;
        transition-duration: 300ms;
    }
    .javascript>img{
        height: 29px;
    }
    .javascript>p{
        color: white;
        font-weight: 600;
    }
    .tailwind{
        border: 1.5px solid lightblue;
    }
    .tailwind>img{
        height: 28px;
    }
    .tailwind>p{
        color: white;
        font-weight: 600;
    }
    .tailwind:hover{
        transition-duration: 300ms;
        background-color: #9999993d;
        box-shadow: 0px 0px 20px lightblue;
    }
    .bootstrap{
        border: 1.5px solid #ad00b1;
    }
    .bootstrap:hover{
        background-color: #9999993d;
        box-shadow: 0px 0px 20px #ad00b1;
        transition-duration: 300ms;
    }
    .bootstrap>img{
        height: 28px;
    }
    .bootstrap>p{
        color: white;
        font-weight: 600;
    }
    .php{
        border: 1.5px solid #ff16f4;
    }
    .php:hover{
        transition-duration: 300ms;
        box-shadow: 0px 0px 20px #ff16f4;
        background-color: #9999993d;
    }
    .php>img{
        height: 28px;
    }
    .php>p{
        color: white;
        font-weight: 600;
    }
    .mysql{
        border: 1.5px solid lightskyblue;
    }
    .mysql:hover{
        transition-duration: 300ms;
        box-shadow: 0px 0px 20px lightskyblue;
        background-color: #9999993d;
    }
    .mysql>img{
        height: 28px;
    }
    .mysql>p{
        color: white;
        font-weight: 600;
    }
    .services{
        height: 450px;
        width: 100%;
        align-content: center;
    }
    .services_heading{
        color: #ff16f4;
        font-weight: 700;
        text-align: center;
        font-size: 34px;
    }
    .my_offer{
        height: 360px;
        display: flex;
        justify-content: space-evenly;
        align-items: center;
        flex-wrap: wrap;
    }
    .the_offers{
        height: 140px;
        width: 36vw;
        text-align: center;
        align-content: center;
        border-radius: 8px 8px 8px 8px;
    }
    .the_offers:hover{
        transition-duration: 300ms;
        box-shadow: 0px 0px 20px #ff16f4;
    }
    .the_offers>i{
        font-size: 20px;
        color: #ff16f4;
        text-align: center;
    }
    .the_offers>p{
        font-weight: 600;
        font-size: 18px;
        color: white;
        text-align: center;
    }
    .the_offers>div{
        font-size: 13px;
        color: white;
    }
    .projects{
        height: 700px;
        width: 100%;
        align-content: center;
    }
    .projects_heading{
        font-size: 34px;
        color: #ff16f4;
        font-weight: 700;
        text-align: center;
    }
    .projects_div{
        height: 530px;
        width: 100%;
        display: flex;
        justify-content: space-evenly;
        align-items: center;
    }
    .projects_div>div{
        height: 450px;
        width: 40vw;
        border: 2px solid #ff16f4;
        text-align: center;
        border-radius: 20px 20px 20px 20px;
    }
    .projects_div>div:hover{
        transition-duration: 300ms;
        box-shadow: 0px 0px 30px #ff16f4;
        background-color: #9999993d;
    }
    .project_name{
        font-size: 20px;
        text-align: center;
        font-weight: 700;
        color: #ff16f4;
    }
    .project_img{
        height: 150px;
        width: 100%;
        border-top-left-radius: inherit;
        border-top-right-radius: inherit;
        border-bottom: 2px solid #ff16f4;
    }
    .project_info{
        height: 60px;
        color: white;
        border: 1px solid black;
        text-align: center;
        align-content: center;
        font-size: 14px;
    }
    .project_stack{
        display: flex;
        justify-content: space-evenly;
        flex-wrap: wrap;
        color: white;
        margin-top: 4px;
    }
    .project_stack>p{
        width: 9vw;
        height: 30px;
        border: 1px solid #ff16f4;
        align-content: center;
        border-radius: 18px 18px 18px 18px;
        background-color: #ff16f4;
        font-size: 12px;
        box-shadow: 3px 3px 0px white;
        font-weight: 600;
    }
   
    .project_links{
        display: flex;
        justify-content: space-evenly;
        margin-top: 10px;
    }
    .github_repo{
        height: 30px;
        width: 10vw;
        transition-duration: 300ms;
        text-align: center;
        align-content: center;
        color: black;
        background-color: white;
        text-decoration: none;
        display: inline-block;
        border-radius: 8px 8px 8px 8px;
        border: 1px solid white;
        display: flex;
        align-items: center;
        justify-content: space-evenly;
        font-size: 13px;
        font-weight: 600;
    }
    .github_repo:hover{
        border: 1px solid #b0b0b0;
        background-color: #b0b0b0;
    }
    .demo{
        background-color: #ff16f4;
        color: black;
        display: inline-block;
        width: 10vw;
        height: 30px;
        text-decoration: none;
        text-align: center;
        align-content: center;
        border-radius: 8px 8px 8px 8px;
        font-weight: 600;
    }
    .demo:hover{
        transition-duration: 300ms;
        border: 1px solid purple;
        background-color: purple;
    }
    .certifications{
        height: 500px;
        width: 100%;
        align-content: center;
    }
    .certifications_heading{
        color: #ff16f4;
        font-weight: 700;
        font-size: 34px;
        text-align: center;
    }
    .certifications_div{
        height: 350px;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-evenly;
    }
    .certificates{
        height: 300px;
        width: 36vw;
        border-radius: 20px 20px 20px 20px;
        text-align: center;
        align-content: center;
    }
    .certificates:hover{
        transition-duration: 300ms;
        box-shadow: 0px 0px 25px #ff16f4;
    }
    .certificate_name{
        color: #ff16f4;
        font-weight: 600;
        font-size: 16px;
    }
    .platform{
        color: white;
        font-weight: 600;
        font-size: 16px;
    }
    .view_certificate{
        height: 80px;
        width: 100%;
        align-content: center;
    }
    
    .view_certificate>a{
        height: 35px;
        width: 10vw;
        border: 1px solid #ff16f4;
        background-color: #ff16f4;
        color: black;
        display: inline-block;
        align-content: center;
        border-radius: 10px 10px 10px 10px;
        text-decoration: none;
        font-weight: 600;
    }
    .view_certificate>a:hover{
        transition: 300ms;
        box-shadow: 0px 0px 10px #ff16f4;
    }
    .contacts{
        height: 800px;
        width: 100%;
        display: grid;
        place-content: center;
    }
    .contacts_heading{
        font-size: 34px;
        font-weight: 700;
        color: #ff16f4;
        text-align: center;
    }
    
    form{
        height: 600px;
        width: 50vw;
        border: 2px solid #ff16f4;
        display: grid;
        place-content: center;
        gap: 20px;
        border-radius: 20px 20px 20px 20px;
    }
    form>p{
        color: white;
        font-size: 28px;
        font-weight: 700;
        text-align: center;
    }
    .fullname,.email{
        height: 80px;
        width: 40vw;
        color: white;
        font-weight: 500;
    }
    .fullname>input,.email>input{
        height: 40px;
        width: 39vw;
        border-radius: 6px 6px 6px 6px;
        border: 1.5px solid white;
        background-color: transparent;
        margin-top: 10px;
        color: white;
        text-indent: 20px;
    }
    .fullname>input:focus,.email>input:focus{
        outline: 1.5px solid #ff16f4;
    }
    .message{
        height: 130px;
        width: 40vw;
        align-content: center;
        color: white;
    }
    .message>textarea{
        height: 85px;
        width: 39vw;
        text-indent: 20px;
        background-color: transparent;
        border-radius: 6px 6px 6px 6px;
        border: 1.5px solid white;
        color: white;
        margin-top: 10px;
    }
    .message>textarea:focus{
        outline: 1.5px solid #ff16f4;
    }
    .submit{
        height: 50px;
        font-size: 20px;
        font-weight: 600;
        border: 1px solid #ff16f4;
        background-color: #ff16f4;
        border-radius: 10px 10px 10px 10px;
        cursor: pointer;
    }
    .submit:hover{
        transition-duration: 300ms;
        background-color: #d100d9;
        border: 1px solid #d100d9;
    }
    footer{
        height: 300px;
        width: 100%;
        display: grid;
        place-content: center;
    }
    .footer_heading{
        color: #ff16f4;
        font-size: 30px;
        font-weight: 700;
        text-align: center;
    }
    footer>p{
        color: white;
        text-align: center;
        font-size: 18px;
        margin-top: 20px;
    }
    .footer_links{
        margin-top: 20px;
        display: flex;
        justify-content: space-evenly;
        align-items: center;
    }
    .github_footer{
        color: white;
        font-size: 34px;
        text-decoration: none;
    }
    .x_footer{
        color: white;
        font-size: 34px;
        text-decoration: none;
    }
    .linkedin_footer{
        font-size: 34px;
        color: #5676ff;
        text-decoration: none;
    }
    .email_footer{
        color: orangered;
        text-decoration: none;
        font-size: 34px;
    }
}
   
@media screen and (min-width:801px) and (max-width:821px){
    header{
        height: 80px;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    nav{
        height: 70px;
        width: 100%;
        display: flex;
        justify-content: space-evenly;
        align-items: center;
        backdrop-filter: blur(30px);
        position: fixed;
    }
    .sidenav{
        position: fixed;
        z-index: 1;
        height: 70vh;
        width: 30vw;
        border-radius: 18px 18px 18px 18px;
        margin-left: -130px;
        background-color: black;
        display: none;
        place-content: center;
        gap: 10px;
        transition-duration: 300ms;
    }
    .sidenav>a{
        border: 1px solid black;
        color: white;
        display: inline-block;
        width: 20vw;
        height: 8vh;
        text-align: center;
        align-content: center;
        text-decoration: none;
        border-radius: 18px 18px 18px 18px;
        font-weight: 600;
    }
    .sidenav>a:hover{
        transition-duration: 300ms;
        background-color: #ff16f4;
        border: 1px solid #ff16f4;
        color: black;
        box-shadow: 0px 0px 20px #ff16f4;
    }
    .sidemenu{
        color: white;
    }
    .closebtn{
        text-align: end;
    }
    .closebtn>a{
        font-size: 30px;
        color: white;
        text-decoration: none;
    }
    .logo{
        font-size: 20px;
        font-weight: 700;
        color: white;
    }
    .nav_links{
        display: none;
    }
    .Resume{
        height: 35px;
        width: 13vw;
        border-radius: 18px 18px 18px 18px;
        display: inline-block;
        text-align: center;
        align-content: center;
        text-decoration: none;
        border: 1px solid #ff16f4;
        background-color: #ff16f4;
        color: black;
        font-weight: 600;
    }
    .Resume:hover{
        transition-duration: 150ms;
        box-shadow: 0px 0px 18px #ff16f4;
    }
    section{
        height: 3500px;
        width: 100%;
        border: 2px solid white;
        border-top: none;
        border-left: none;
        border-right: none;
    }
    .About{
        height: 600px;
        width: 100%;
        display: flex;
        justify-content: space-evenly;
        align-items: center;
    }
    .About_img{
        height: 400px;
        width: 36vw;
    }
    .About_img>img{
        height: 100%;
        width: 100%;
        border-radius: 100px 100px 100px 100px;
    }
    .About_info{
        height: 400px;
        width: 40vw;
    }
    .name{
        font-size: 26px;
        font-weight: 700;
        color: white;
    }
    .job{
        font-size: 26px;
        font-weight: 700;
        color: #ff16f4;
    }
    .info{
        height: 130px;
        width: 100%;
    }
    .info>p{
        color: white;
        font-size: 16px;
        font-weight: 500;
    }
    .profiles{
        text-align: center;
    }
    .github_link{
        font-size: 28px;
        color: white;
    }
    .linkedin_link{
        text-decoration: none;
        font-size: 28px;
        color: #5676ff;
    }
    .x_link{
        text-decoration: none;
        font-size: 28px;
        color: white;
    }
    .download_resume{
        height: 100px;
        width: 100%;
        align-content: center;
        text-align: center;
    }
    .download_resume>a{
        height: 50px;
        width: 18vw;
        display: inline-block;
        align-content: center;
        text-align: center;
        background-color: #d100d9;
        border-radius: 10px 10px 10px 10px;
        text-decoration: none;
        color: black;
        font-weight: 600;
        font-size: 13px;
    }
    .download_resume>a:hover{
        transition-duration: 300ms;
        background-color: #ad00b1;
        box-shadow: 0px 0px 18px #ad00b1;
    }
    .tech_stack{
        height: 350px;
        width: 100%;
        align-content: center;
    }
    .tech_stack_heading{
        color: #ff16f4;
        font-weight: 700;
        text-align: center;
        font-size: 35px;
    }
    .stack_div{
        height: 200px;
        width: 100%;
        display: flex;
        justify-content: space-evenly;
        align-content: center;
        flex-wrap: wrap;
    }
    .html,.css,.javascript,.tailwind,.bootstrap,.php,.mysql{
        height: 100px;
        width: 12vw;
        background-color: transparent;
        border-radius: 8px 8px 8px 8px;
    }
    .html{
        border: 1.5px solid orange;
    }
    .html:hover{
        box-shadow: 0px 0px 20px orange;
        transition-duration: 300ms;
        background-color: #9999993d;
    }
    .html>img{
        height: 29px;
    }
    .html>p{
        color: white;
        font-weight: 600;
    }
    .css{
        border: 1.5px solid blue;
    }
    .css:hover{
        background-color: #9999993d;
        box-shadow: 0px 0px 20px blue;
        transition-duration: 300ms;
    }
    .css>img{
        height: 27px;
    }
    .css>p{
        color: white;
        font-weight: 600;
    }
    .javascript{
        border: 1.5px solid yellow;
    }
    .javascript:hover{
        background-color: #9999993d;
        box-shadow: 0px 0px 20px yellow;
        transition-duration: 300ms;
    }
    .javascript>img{
        height: 29px;
    }
    .javascript>p{
        color: white;
        font-weight: 600;
    }
    .tailwind{
        border: 1.5px solid lightblue;
    }
    .tailwind>img{
        height: 28px;
    }
    .tailwind>p{
        color: white;
        font-weight: 600;
    }
    .tailwind:hover{
        transition-duration: 300ms;
        background-color: #9999993d;
        box-shadow: 0px 0px 20px lightblue;
    }
    .bootstrap{
        border: 1.5px solid #ad00b1;
    }
    .bootstrap:hover{
        background-color: #9999993d;
        box-shadow: 0px 0px 20px #ad00b1;
        transition-duration: 300ms;
    }
    .bootstrap>img{
        height: 28px;
    }
    .bootstrap>p{
        color: white;
        font-weight: 600;
    }
    .php{
        border: 1.5px solid #ff16f4;
    }
    .php:hover{
        transition-duration: 300ms;
        box-shadow: 0px 0px 20px #ff16f4;
        background-color: #9999993d;
    }
    .php>img{
        height: 28px;
    }
    .php>p{
        color: white;
        font-weight: 600;
    }
    .mysql{
        border: 1.5px solid lightskyblue;
    }
    .mysql:hover{
        transition-duration: 300ms;
        box-shadow: 0px 0px 20px lightskyblue;
        background-color: #9999993d;
    }
    .mysql>img{
        height: 28px;
    }
    .mysql>p{
        color: white;
        font-weight: 600;
    }
    .services{
        height: 450px;
        width: 100%;
        align-content: center;
    }
    .services_heading{
        color: #ff16f4;
        font-weight: 700;
        text-align: center;
        font-size: 34px;
    }
    .my_offer{
        height: 360px;
        display: flex;
        justify-content: space-evenly;
        align-items: center;
        flex-wrap: wrap;
    }
    .the_offers{
        height: 140px;
        width: 36vw;
        text-align: center;
        align-content: center;
        border-radius: 8px 8px 8px 8px;
    }
    .the_offers:hover{
        transition-duration: 300ms;
        box-shadow: 0px 0px 20px #ff16f4;
    }
    .the_offers>i{
        font-size: 20px;
        color: #ff16f4;
        text-align: center;
    }
    .the_offers>p{
        font-weight: 600;
        font-size: 18px;
        color: white;
        text-align: center;
    }
    .the_offers>div{
        font-size: 13px;
        color: white;
    }
    .projects{
        height: 700px;
        width: 100%;
        align-content: center;
    }
    .projects_heading{
        font-size: 34px;
        color: #ff16f4;
        font-weight: 700;
        text-align: center;
    }
    .projects_div{
        height: 530px;
        width: 100%;
        display: flex;
        justify-content: space-evenly;
        align-items: center;
    }
    .projects_div>div{
        height: 450px;
        width: 40vw;
        border: 2px solid #ff16f4;
        text-align: center;
        border-radius: 20px 20px 20px 20px;
    }
    .projects_div>div:hover{
        transition-duration: 300ms;
        box-shadow: 0px 0px 30px #ff16f4;
        background-color: #9999993d;
    }
    .project_name{
        font-size: 20px;
        text-align: center;
        font-weight: 700;
        color: #ff16f4;
    }
    .project_img{
        height: 150px;
        width: 100%;
        border-top-left-radius: inherit;
        border-top-right-radius: inherit;
        border-bottom: 2px solid #ff16f4;
    }
    .project_info{
        height: 60px;
        color: white;
        border: 1px solid black;
        text-align: center;
        align-content: center;
        font-size: 14px;
    }
    .project_stack{
        display: flex;
        justify-content: space-evenly;
        flex-wrap: wrap;
        color: white;
        margin-top: 4px;
    }
    .project_stack>p{
        width: 7vw;
        height: 30px;
        border: 1px solid #ff16f4;
        align-content: center;
        border-radius: 18px 18px 18px 18px;
        background-color: #ff16f4;
        font-size: 12px;
        box-shadow: 3px 3px 0px white;
        font-weight: 600;
    }
   
    .project_links{
        display: flex;
        justify-content: space-evenly;
        margin-top: 10px;
    }
    .github_repo{
        height: 30px;
        width: 10vw;
        transition-duration: 300ms;
        text-align: center;
        align-content: center;
        color: black;
        background-color: white;
        text-decoration: none;
        display: inline-block;
        border-radius: 8px 8px 8px 8px;
        border: 1px solid white;
        display: flex;
        align-items: center;
        justify-content: space-evenly;
        font-size: 13px;
        font-weight: 600;
    }
    .github_repo:hover{
        border: 1px solid #b0b0b0;
        background-color: #b0b0b0;
    }
    .demo{
        background-color: #ff16f4;
        color: black;
        display: inline-block;
        width: 10vw;
        height: 30px;
        text-decoration: none;
        text-align: center;
        align-content: center;
        border-radius: 8px 8px 8px 8px;
        font-weight: 600;
    }
    .demo:hover{
        transition-duration: 300ms;
        border: 1px solid purple;
        background-color: purple;
    }
    .certifications{
        height: 500px;
        width: 100%;
        align-content: center;
    }
    .certifications_heading{
        color: #ff16f4;
        font-weight: 700;
        font-size: 34px;
        text-align: center;
    }
    .certifications_div{
        height: 350px;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-evenly;
    }
    .certificates{
        height: 300px;
        width: 36vw;
        border-radius: 20px 20px 20px 20px;
        text-align: center;
        align-content: center;
    }
    .certificates:hover{
        transition-duration: 300ms;
        box-shadow: 0px 0px 25px #ff16f4;
    }
    .certificate_name{
        color: #ff16f4;
        font-weight: 600;
        font-size: 18px;
    }
    .platform{
        color: white;
        font-weight: 600;
        font-size: 16px;
    }
    .view_certificate{
        height: 80px;
        width: 100%;
        align-content: center;
    }
    
    .view_certificate>a{
        height: 35px;
        width: 10vw;
        border: 1px solid #ff16f4;
        background-color: #ff16f4;
        color: black;
        display: inline-block;
        align-content: center;
        border-radius: 10px 10px 10px 10px;
        text-decoration: none;
        font-weight: 600;
    }
    .view_certificate>a:hover{
        transition: 300ms;
        box-shadow: 0px 0px 10px #ff16f4;
    }
    .contacts{
        height: 800px;
        width: 100%;
        display: grid;
        place-content: center;
    }
    .contacts_heading{
        font-size: 34px;
        font-weight: 700;
        color: #ff16f4;
        text-align: center;
    }
    
    form{
        height: 600px;
        width: 50vw;
        border: 2px solid #ff16f4;
        display: grid;
        place-content: center;
        gap: 20px;
        border-radius: 20px 20px 20px 20px;
    }
    form>p{
        color: white;
        font-size: 28px;
        font-weight: 700;
        text-align: center;
    }
    .fullname,.email{
        height: 80px;
        width: 40vw;
        color: white;
        font-weight: 500;
    }
    .fullname>input,.email>input{
        height: 40px;
        width: 39vw;
        border-radius: 6px 6px 6px 6px;
        border: 1.5px solid white;
        background-color: transparent;
        margin-top: 10px;
        color: white;
        text-indent: 20px;
    }
    .fullname>input:focus,.email>input:focus{
        outline: 1.5px solid #ff16f4;
    }
    .message{
        height: 130px;
        width: 40vw;
        align-content: center;
        color: white;
    }
    .message>textarea{
        height: 85px;
        width: 39vw;
        text-indent: 20px;
        background-color: transparent;
        border-radius: 6px 6px 6px 6px;
        border: 1.5px solid white;
        color: white;
        margin-top: 10px;
    }
    .message>textarea:focus{
        outline: 1.5px solid #ff16f4;
    }
    .submit{
        height: 50px;
        font-size: 20px;
        font-weight: 600;
        border: 1px solid #ff16f4;
        background-color: #ff16f4;
        border-radius: 10px 10px 10px 10px;
        cursor: pointer;
    }
    .submit:hover{
        transition-duration: 300ms;
        background-color: #d100d9;
        border: 1px solid #d100d9;
    }
    footer{
        height: 300px;
        width: 100%;
        display: grid;
        place-content: center;
    }
    .footer_heading{
        color: #ff16f4;
        font-size: 30px;
        font-weight: 700;
        text-align: center;
    }
    footer>p{
        color: white;
        text-align: center;
        font-size: 18px;
        margin-top: 20px;
    }
    .footer_links{
        margin-top: 20px;
        display: flex;
        justify-content: space-evenly;
        align-items: center;
    }
    .github_footer{
        color: white;
        font-size: 34px;
        text-decoration: none;
    }
    .x_footer{
        color: white;
        font-size: 34px;
        text-decoration: none;
    }
    .linkedin_footer{
        font-size: 34px;
        color: #5676ff;
        text-decoration: none;
    }
    .email_footer{
        color: orangered;
        text-decoration: none;
        font-size: 34px;
    }
}
@media screen and (min-width:822px) and (max-width:842px){
    header{
        height: 80px;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    nav{
        height: 70px;
        width: 100%;
        display: flex;
        justify-content: space-evenly;
        align-items: center;
        backdrop-filter: blur(30px);
        position: fixed;
    }
    .sidenav{
        position: fixed;
        z-index: 1;
        height: 70vh;
        width: 30vw;
        border-radius: 18px 18px 18px 18px;
        margin-left: -130px;
        background-color: black;
        display: none;
        place-content: center;
        gap: 10px;
        transition-duration: 300ms;
    }
    .sidenav>a{
        border: 1px solid black;
        color: white;
        display: inline-block;
        width: 20vw;
        height: 8vh;
        text-align: center;
        align-content: center;
        text-decoration: none;
        border-radius: 18px 18px 18px 18px;
        font-weight: 600;
    }
    .sidenav>a:hover{
        transition-duration: 300ms;
        background-color: #ff16f4;
        border: 1px solid #ff16f4;
        color: black;
        box-shadow: 0px 0px 20px #ff16f4;
    }
    .sidemenu{
        color: white;
    }
    .closebtn{
        text-align: end;
    }
    .closebtn>a{
        font-size: 30px;
        color: white;
        text-decoration: none;
    }
    .logo{
        font-size: 20px;
        font-weight: 700;
        color: white;
    }
    .nav_links{
        display: none;
    }
    .Resume{
        height: 35px;
        width: 13vw;
        border-radius: 18px 18px 18px 18px;
        display: inline-block;
        text-align: center;
        align-content: center;
        text-decoration: none;
        border: 1px solid #ff16f4;
        background-color: #ff16f4;
        color: black;
        font-weight: 600;
    }
    .Resume:hover{
        transition-duration: 150ms;
        box-shadow: 0px 0px 18px #ff16f4;
    }
    section{
        height: 3500px;
        width: 100%;
        border: 2px solid white;
        border-top: none;
        border-left: none;
        border-right: none;
    }
    .About{
        height: 600px;
        width: 100%;
        display: flex;
        justify-content: space-evenly;
        align-items: center;
    }
    .About_img{
        height: 500px;
        width: 36vw;
    }
    .About_img>img{
        height: 100%;
        width: 100%;
        border-radius: 100px 100px 100px 100px;
    }
    .About_info{
        height: 400px;
        width: 40vw;
    }
    .name{
        font-size: 26px;
        font-weight: 700;
        color: white;
    }
    .job{
        font-size: 26px;
        font-weight: 700;
        color: #ff16f4;
    }
    .info{
        height: 130px;
        width: 100%;
    }
    .info>p{
        color: white;
        font-size: 16px;
        font-weight: 500;
    }
    .profiles{
        text-align: center;
    }
    .github_link{
        font-size: 28px;
        color: white;
    }
    .linkedin_link{
        text-decoration: none;
        font-size: 28px;
        color: #5676ff;
    }
    .x_link{
        text-decoration: none;
        font-size: 28px;
        color: white;
    }
    .download_resume{
        height: 100px;
        width: 100%;
        align-content: center;
        text-align: center;
    }
    .download_resume>a{
        height: 60px;
        width: 18vw;
        display: inline-block;
        align-content: center;
        text-align: center;
        background-color: #d100d9;
        border-radius: 10px 10px 10px 10px;
        text-decoration: none;
        color: black;
        font-weight: 600;
        font-size: 13px;
    }
    .download_resume>a:hover{
        transition-duration: 300ms;
        background-color: #ad00b1;
        box-shadow: 0px 0px 18px #ad00b1;
    }
    .tech_stack{
        height: 350px;
        width: 100%;
        align-content: center;
    }
    .tech_stack_heading{
        color: #ff16f4;
        font-weight: 700;
        text-align: center;
        font-size: 35px;
    }
    .stack_div{
        height: 200px;
        width: 100%;
        text-align: center;
        align-content: center;
    }
    .html,.css,.javascript,.tailwind,.bootstrap,.php,.mysql{
        height: 100px;
        width: 12vw;
        background-color: transparent;
        border-radius: 8px 8px 8px 8px;
    }
    .html{
        border: 1.5px solid orange;
    }
    .html:hover{
        box-shadow: 0px 0px 20px orange;
        transition-duration: 300ms;
        background-color: #9999993d;
    }
    .html>img{
        height: 29px;
    }
    .html>p{
        color: white;
        font-weight: 600;
    }
    .css{
        border: 1.5px solid blue;
    }
    .css:hover{
        background-color: #9999993d;
        box-shadow: 0px 0px 20px blue;
        transition-duration: 300ms;
    }
    .css>img{
        height: 27px;
    }
    .css>p{
        color: white;
        font-weight: 600;
    }
    .javascript{
        border: 1.5px solid yellow;
    }
    .javascript:hover{
        background-color: #9999993d;
        box-shadow: 0px 0px 20px yellow;
        transition-duration: 300ms;
    }
    .javascript>img{
        height: 29px;
    }
    .javascript>p{
        color: white;
        font-weight: 600;
    }
    .tailwind{
        border: 1.5px solid lightblue;
    }
    .tailwind>img{
        height: 28px;
    }
    .tailwind>p{
        color: white;
        font-weight: 600;
    }
    .tailwind:hover{
        transition-duration: 300ms;
        background-color: #9999993d;
        box-shadow: 0px 0px 20px lightblue;
    }
    .bootstrap{
        border: 1.5px solid #ad00b1;
    }
    .bootstrap:hover{
        background-color: #9999993d;
        box-shadow: 0px 0px 20px #ad00b1;
        transition-duration: 300ms;
    }
    .bootstrap>img{
        height: 28px;
    }
    .bootstrap>p{
        color: white;
        font-weight: 600;
    }
    .php{
        border: 1.5px solid #ff16f4;
    }
    .php:hover{
        transition-duration: 300ms;
        box-shadow: 0px 0px 20px #ff16f4;
        background-color: #9999993d;
    }
    .php>img{
        height: 28px;
    }
    .php>p{
        color: white;
        font-weight: 600;
    }
    .mysql{
        border: 1.5px solid lightskyblue;
    }
    .mysql:hover{
        transition-duration: 300ms;
        box-shadow: 0px 0px 20px lightskyblue;
        background-color: #9999993d;
    }
    .mysql>img{
        height: 28px;
    }
    .mysql>p{
        color: white;
        font-weight: 600;
    }
    .services{
        height: 450px;
        width: 100%;
        align-content: center;
    }
    .services_heading{
        color: #ff16f4;
        font-weight: 700;
        text-align: center;
        font-size: 34px;
    }
    .my_offer{
        height: 360px;
        display: flex;
        justify-content: space-evenly;
        align-items: center;
        flex-wrap: wrap;
    }
    .the_offers{
        height: 140px;
        width: 36vw;
        text-align: center;
        align-content: center;
        border-radius: 8px 8px 8px 8px;
    }
    .the_offers:hover{
        transition-duration: 300ms;
        box-shadow: 0px 0px 20px #ff16f4;
    }
    .the_offers>i{
        font-size: 20px;
        color: #ff16f4;
        text-align: center;
    }
    .the_offers>p{
        font-weight: 600;
        font-size: 18px;
        color: white;
        text-align: center;
    }
    .the_offers>div{
        font-size: 13px;
        color: white;
    }
    .projects{
        height: 700px;
        width: 100%;
        align-content: center;
    }
    .projects_heading{
        font-size: 34px;
        color: #ff16f4;
        font-weight: 700;
        text-align: center;
    }
    .projects_div{
        height: 530px;
        width: 100%;
        display: flex;
        justify-content: space-evenly;
        align-items: center;
    }
    .projects_div>div{
        height: 450px;
        width: 40vw;
        border: 2px solid #ff16f4;
        text-align: center;
        border-radius: 18px 18px 18px 18px;
    }
    .projects_div>div:hover{
        transition-duration: 300ms;
        box-shadow: 0px 0px 30px #ff16f4;
        background-color: #9999993d;
    }
    .project_name{
        font-size: 20px;
        text-align: center;
        font-weight: 700;
        color: #ff16f4;
    }
    .project_img{
        height: 180px;
        width: 100%;
        border-top-left-radius: inherit;
        border-top-right-radius: inherit;
        border-bottom: 2px solid #ff16f4;
    }
    .project_info{
        height: 60px;
        color: white;
        border: 1px solid black;
        text-align: center;
        align-content: center;
        font-size: 14px;
    }
    .project_stack{
        display: flex;
        justify-content: space-evenly;
        flex-wrap: wrap;
        color: white;
        margin-top: 4px;
    }
    .project_stack>p{
        width: 7vw;
        height: 30px;
        border: 1px solid #ff16f4;
        align-content: center;
        border-radius: 18px 18px 18px 18px;
        background-color: #ff16f4;
        font-size: 12px;
        box-shadow: 3px 3px 0px white;
        font-weight: 600;
    }
   
    .project_links{
        display: flex;
        justify-content: space-evenly;
        margin-top: 10px;
    }
    .github_repo{
        height: 30px;
        width: 8vw;
        transition-duration: 300ms;
        text-align: center;
        align-content: center;
        color: black;
        background-color: white;
        text-decoration: none;
        display: inline-block;
        border-radius: 8px 8px 8px 8px;
        border: 1px solid white;
        display: flex;
        align-items: center;
        justify-content: space-evenly;
        font-size: 13px;
        font-weight: 600;
    }
    .github_repo:hover{
        border: 1px solid #b0b0b0;
        background-color: #b0b0b0;
    }
    .demo{
        background-color: #ff16f4;
        color: black;
        display: inline-block;
        width: 10vw;
        height: 30px;
        text-decoration: none;
        text-align: center;
        align-content: center;
        border-radius: 8px 8px 8px 8px;
        font-weight: 600;
    }
    .demo:hover{
        transition-duration: 300ms;
        border: 1px solid purple;
        background-color: purple;
    }
    .certifications{
        height: 500px;
        width: 100%;
        align-content: center;
    }
    .certifications_heading{
        color: #ff16f4;
        font-weight: 700;
        font-size: 34px;
        text-align: center;
    }
    .certifications_div{
        height: 350px;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-evenly;
    }
    .certificates{
        height: 300px;
        width: 36vw;
        border-radius: 20px 20px 20px 20px;
        text-align: center;
        align-content: center;
    }
    .certificates:hover{
        transition-duration: 300ms;
        box-shadow: 0px 0px 25px #ff16f4;
    }
    .certificate_name{
        color: #ff16f4;
        font-weight: 600;
        font-size: 18px;
    }
    .platform{
        color: white;
        font-weight: 600;
        font-size: 16px;
    }
    .view_certificate{
        height: 80px;
        width: 100%;
        align-content: center;
    }
    
    .view_certificate>a{
        height: 35px;
        width: 10vw;
        border: 1px solid #ff16f4;
        background-color: #ff16f4;
        color: black;
        display: inline-block;
        align-content: center;
        border-radius: 10px 10px 10px 10px;
        text-decoration: none;
        font-weight: 600;
    }
    .view_certificate>a:hover{
        transition: 300ms;
        box-shadow: 0px 0px 10px #ff16f4;
    }
    .contacts{
        height: 800px;
        width: 100%;
        display: grid;
        place-content: center;
    }
    .contacts_heading{
        font-size: 34px;
        font-weight: 700;
        color: #ff16f4;
        text-align: center;
    }
    
    form{
        height: 600px;
        width: 50vw;
        border: 2px solid #ff16f4;
        display: grid;
        place-content: center;
        gap: 20px;
        border-radius: 20px 20px 20px 20px;
    }
    form>p{
        color: white;
        font-size: 28px;
        font-weight: 700;
        text-align: center;
    }
    .fullname,.email{
        height: 80px;
        width: 40vw;
        color: white;
        font-weight: 500;
    }
    .fullname>input,.email>input{
        height: 40px;
        width: 39vw;
        border-radius: 6px 6px 6px 6px;
        border: 1.5px solid white;
        background-color: transparent;
        margin-top: 10px;
        color: white;
        text-indent: 20px;
    }
    .fullname>input:focus,.email>input:focus{
        outline: 1.5px solid #ff16f4;
    }
    .message{
        height: 130px;
        width: 40vw;
        align-content: center;
        color: white;
    }
    .message>textarea{
        height: 85px;
        width: 39vw;
        text-indent: 20px;
        background-color: transparent;
        border-radius: 6px 6px 6px 6px;
        border: 1.5px solid white;
        color: white;
        margin-top: 10px;
    }
    .message>textarea:focus{
        outline: 1.5px solid #ff16f4;
    }
    .submit{
        height: 50px;
        font-size: 20px;
        font-weight: 600;
        border: 1px solid #ff16f4;
        background-color: #ff16f4;
        border-radius: 10px 10px 10px 10px;
        cursor: pointer;
    }
    .submit:hover{
        transition-duration: 300ms;
        background-color: #d100d9;
        border: 1px solid #d100d9;
    }
    footer{
        height: 300px;
        width: 100%;
        display: grid;
        place-content: center;
    }
    .footer_heading{
        color: #ff16f4;
        font-size: 30px;
        font-weight: 700;
        text-align: center;
    }
    footer>p{
        color: white;
        text-align: center;
        font-size: 18px;
        margin-top: 20px;
    }
    .footer_links{
        margin-top: 20px;
        display: flex;
        justify-content: space-evenly;
        align-items: center;
    }
    .github_footer{
        color: white;
        font-size: 34px;
        text-decoration: none;
    }
    .x_footer{
        color: white;
        font-size: 34px;
        text-decoration: none;
    }
    .linkedin_footer{
        font-size: 34px;
        color: #5676ff;
        text-decoration: none;
    }
    .email_footer{
        color: orangered;
        text-decoration: none;
        font-size: 34px;
    }
}
@media screen and (min-width:843px) and (max-width:893px){
    header{
        height: 80px;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    nav{
        height: 70px;
        width: 100%;
        display: flex;
        justify-content: space-evenly;
        align-items: center;
        backdrop-filter: blur(30px);
        position: fixed;
    }
    .sidenav{
        position: fixed;
        z-index: 1;
        height: 70vh;
        width: 30vw;
        border-radius: 18px 18px 18px 18px;
        margin-left: -130px;
        background-color: black;
        display: none;
        place-content: center;
        gap: 10px;
        transition-duration: 300ms;
    }
    .sidenav>a{
        border: 1px solid black;
        color: white;
        display: inline-block;
        width: 20vw;
        height: 8vh;
        text-align: center;
        align-content: center;
        text-decoration: none;
        border-radius: 18px 18px 18px 18px;
        font-weight: 600;
    }
    .sidenav>a:hover{
        transition-duration: 300ms;
        background-color: #ff16f4;
        border: 1px solid #ff16f4;
        color: black;
        box-shadow: 0px 0px 20px #ff16f4;
    }
    .sidemenu{
        color: white;
    }
    .closebtn{
        text-align: end;
    }
    .closebtn>a{
        font-size: 30px;
        color: white;
        text-decoration: none;
    }
    .logo{
        font-size: 20px;
        font-weight: 700;
        color: white;
    }
    .nav_links{
        display: none;
    }
    .Resume{
        height: 35px;
        width: 13vw;
        border-radius: 18px 18px 18px 18px;
        display: inline-block;
        text-align: center;
        align-content: center;
        text-decoration: none;
        border: 1px solid #ff16f4;
        background-color: #ff16f4;
        color: black;
        font-weight: 600;
    }
    .Resume:hover{
        transition-duration: 150ms;
        box-shadow: 0px 0px 18px #ff16f4;
    }
    section{
        height: 3500px;
        width: 100%;
        border: 2px solid white;
        border-top: none;
        border-left: none;
        border-right: none;
    }
    .About{
        height: 600px;
        width: 100%;
        display: flex;
        justify-content: space-evenly;
        align-items: center;
    }
    .About_img{
        height: 500px;
        width: 36vw;
    }
    .About_img>img{
        height: 100%;
        width: 100%;
        border-radius: 100px 100px 100px 100px;
    }
    .About_info{
        height: 400px;
        width: 40vw;
    }
    .name{
        font-size: 26px;
        font-weight: 700;
        color: white;
    }
    .job{
        font-size: 26px;
        font-weight: 700;
        color: #ff16f4;
    }
    .info{
        height: 130px;
        width: 100%;
    }
    .info>p{
        color: white;
        font-size: 16px;
        font-weight: 500;
    }
    .profiles{
        text-align: center;
    }
    .github_link{
        font-size: 28px;
        color: white;
    }
    .linkedin_link{
        text-decoration: none;
        font-size: 28px;
        color: #5676ff;
    }
    .x_link{
        text-decoration: none;
        font-size: 28px;
        color: white;
    }
    .download_resume{
        height: 100px;
        width: 100%;
        align-content: center;
        text-align: center;
    }
    .download_resume>a{
        height: 60px;
        width: 18vw;
        display: inline-block;
        align-content: center;
        text-align: center;
        background-color: #d100d9;
        border-radius: 10px 10px 10px 10px;
        text-decoration: none;
        color: black;
        font-weight: 600;
        font-size: 13px;
    }
    .download_resume>a:hover{
        transition-duration: 300ms;
        background-color: #ad00b1;
        box-shadow: 0px 0px 18px #ad00b1;
    }
    .tech_stack{
        height: 350px;
        width: 100%;
        align-content: center;
    }
    .tech_stack_heading{
        color: #ff16f4;
        font-weight: 700;
        text-align: center;
        font-size: 35px;
    }
    .stack_div{
        height: 200px;
        width: 100%;
        text-align: center;
        align-content: center;
    }
    .html,.css,.javascript,.tailwind,.bootstrap,.php,.mysql{
        height: 100px;
        width: 12vw;
        background-color: transparent;
        border-radius: 8px 8px 8px 8px;
    }
    .html{
        border: 1.5px solid orange;
    }
    .html:hover{
        box-shadow: 0px 0px 20px orange;
        transition-duration: 300ms;
        background-color: #9999993d;
    }
    .html>img{
        height: 29px;
    }
    .html>p{
        color: white;
        font-weight: 600;
    }
    .css{
        border: 1.5px solid blue;
    }
    .css:hover{
        background-color: #9999993d;
        box-shadow: 0px 0px 20px blue;
        transition-duration: 300ms;
    }
    .css>img{
        height: 27px;
    }
    .css>p{
        color: white;
        font-weight: 600;
    }
    .javascript{
        border: 1.5px solid yellow;
    }
    .javascript:hover{
        background-color: #9999993d;
        box-shadow: 0px 0px 20px yellow;
        transition-duration: 300ms;
    }
    .javascript>img{
        height: 29px;
    }
    .javascript>p{
        color: white;
        font-weight: 600;
    }
    .tailwind{
        border: 1.5px solid lightblue;
    }
    .tailwind>img{
        height: 28px;
    }
    .tailwind>p{
        color: white;
        font-weight: 600;
    }
    .tailwind:hover{
        transition-duration: 300ms;
        background-color: #9999993d;
        box-shadow: 0px 0px 20px lightblue;
    }
    .bootstrap{
        border: 1.5px solid #ad00b1;
    }
    .bootstrap:hover{
        background-color: #9999993d;
        box-shadow: 0px 0px 20px #ad00b1;
        transition-duration: 300ms;
    }
    .bootstrap>img{
        height: 28px;
    }
    .bootstrap>p{
        color: white;
        font-weight: 600;
    }
    .php{
        border: 1.5px solid #ff16f4;
    }
    .php:hover{
        transition-duration: 300ms;
        box-shadow: 0px 0px 20px #ff16f4;
        background-color: #9999993d;
    }
    .php>img{
        height: 28px;
    }
    .php>p{
        color: white;
        font-weight: 600;
    }
    .mysql{
        border: 1.5px solid lightskyblue;
    }
    .mysql:hover{
        transition-duration: 300ms;
        box-shadow: 0px 0px 20px lightskyblue;
        background-color: #9999993d;
    }
    .mysql>img{
        height: 28px;
    }
    .mysql>p{
        color: white;
        font-weight: 600;
    }
    .services{
        height: 450px;
        width: 100%;
        align-content: center;
    }
    .services_heading{
        color: #ff16f4;
        font-weight: 700;
        text-align: center;
        font-size: 34px;
    }
    .my_offer{
        height: 360px;
        display: flex;
        justify-content: space-evenly;
        align-items: center;
        flex-wrap: wrap;
    }
    .the_offers{
        height: 140px;
        width: 36vw;
        text-align: center;
        align-content: center;
        border-radius: 8px 8px 8px 8px;
    }
    .the_offers:hover{
        transition-duration: 300ms;
        box-shadow: 0px 0px 20px #ff16f4;
    }
    .the_offers>i{
        font-size: 20px;
        color: #ff16f4;
        text-align: center;
    }
    .the_offers>p{
        font-weight: 600;
        font-size: 18px;
        color: white;
        text-align: center;
    }
    .the_offers>div{
        font-size: 13px;
        color: white;
    }
    .projects{
        height: 700px;
        width: 100%;
        align-content: center;
    }
    .projects_heading{
        font-size: 34px;
        color: #ff16f4;
        font-weight: 700;
        text-align: center;
    }
    .projects_div{
        height: 530px;
        width: 100%;
        display: flex;
        justify-content: space-evenly;
        align-items: center;
    }
    .projects_div>div{
        height: 450px;
        width: 40vw;
        border: 2px solid #ff16f4;
        text-align: center;
        border-radius: 18px 18px 18px 18px;
    }
    .projects_div>div:hover{
        transition-duration: 300ms;
        box-shadow: 0px 0px 30px #ff16f4;
        background-color: #9999993d;
    }
    .project_name{
        font-size: 20px;
        text-align: center;
        font-weight: 700;
        color: #ff16f4;
    }
    .project_img{
        height: 200px;
        width: 100%;
        border-top-left-radius: inherit;
        border-top-right-radius: inherit;
        border-bottom: 2px solid #ff16f4;
    }
    .project_info{
        height: 60px;
        color: white;
        border: 1px solid black;
        text-align: center;
        align-content: center;
        font-size: 14px;
    }
    .project_stack{
        display: flex;
        justify-content: space-evenly;
        flex-wrap: wrap;
        color: white;
        margin-top: 4px;
    }
    .project_stack>p{
        width: 7vw;
        height: 30px;
        border: 1px solid #ff16f4;
        align-content: center;
        border-radius: 18px 18px 18px 18px;
        background-color: #ff16f4;
        font-size: 12px;
        box-shadow: 3px 3px 0px white;
        font-weight: 600;
    }
   
    .project_links{
        display: flex;
        justify-content: space-evenly;
        margin-top: 10px;
    }
    .github_repo{
        height: 30px;
        width: 8vw;
        transition-duration: 300ms;
        text-align: center;
        align-content: center;
        color: black;
        background-color: white;
        text-decoration: none;
        display: inline-block;
        border-radius: 8px 8px 8px 8px;
        border: 1px solid white;
        display: flex;
        align-items: center;
        justify-content: space-evenly;
        font-size: 13px;
        font-weight: 600;
    }
    .github_repo:hover{
        border: 1px solid #b0b0b0;
        background-color: #b0b0b0;
    }
    .demo{
        background-color: #ff16f4;
        color: black;
        display: inline-block;
        width: 10vw;
        height: 30px;
        text-decoration: none;
        text-align: center;
        align-content: center;
        border-radius: 8px 8px 8px 8px;
        font-weight: 600;
    }
    .demo:hover{
        transition-duration: 300ms;
        border: 1px solid purple;
        background-color: purple;
    }
    .certifications{
        height: 500px;
        width: 100%;
        align-content: center;
    }
    .certifications_heading{
        color: #ff16f4;
        font-weight: 700;
        font-size: 34px;
        text-align: center;
    }
    .certifications_div{
        height: 350px;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-evenly;
    }
    .certificates{
        height: 300px;
        width: 36vw;
        border-radius: 20px 20px 20px 20px;
        text-align: center;
        align-content: center;
    }
    .certificates:hover{
        transition-duration: 300ms;
        box-shadow: 0px 0px 25px #ff16f4;
    }
    .certificate_name{
        color: #ff16f4;
        font-weight: 600;
        font-size: 18px;
    }
    .platform{
        color: white;
        font-weight: 600;
        font-size: 16px;
    }
    .view_certificate{
        height: 80px;
        width: 100%;
        align-content: center;
    }
    
    .view_certificate>a{
        height: 35px;
        width: 10vw;
        border: 1px solid #ff16f4;
        background-color: #ff16f4;
        color: black;
        display: inline-block;
        align-content: center;
        border-radius: 10px 10px 10px 10px;
        text-decoration: none;
        font-weight: 600;
    }
    .view_certificate>a:hover{
        transition: 300ms;
        box-shadow: 0px 0px 10px #ff16f4;
    }
    .contacts{
        height: 800px;
        width: 100%;
        display: grid;
        place-content: center;
    }
    .contacts_heading{
        font-size: 34px;
        font-weight: 700;
        color: #ff16f4;
        text-align: center;
    }
    
    form{
        height: 600px;
        width: 50vw;
        border: 2px solid #ff16f4;
        display: grid;
        place-content: center;
        gap: 20px;
        border-radius: 20px 20px 20px 20px;
    }
    form>p{
        color: white;
        font-size: 28px;
        font-weight: 700;
        text-align: center;
    }
    .fullname,.email{
        height: 80px;
        width: 40vw;
        color: white;
        font-weight: 500;
    }
    .fullname>input,.email>input{
        height: 40px;
        width: 39vw;
        border-radius: 6px 6px 6px 6px;
        border: 1.5px solid white;
        background-color: transparent;
        margin-top: 10px;
        color: white;
        text-indent: 20px;
    }
    .fullname>input:focus,.email>input:focus{
        outline: 1.5px solid #ff16f4;
    }
    .message{
        height: 130px;
        width: 40vw;
        align-content: center;
        color: white;
    }
    .message>textarea{
        height: 85px;
        width: 39vw;
        text-indent: 20px;
        background-color: transparent;
        border-radius: 6px 6px 6px 6px;
        border: 1.5px solid white;
        color: white;
        margin-top: 10px;
    }
    .message>textarea:focus{
        outline: 1.5px solid #ff16f4;
    }
    .submit{
        height: 50px;
        font-size: 20px;
        font-weight: 600;
        border: 1px solid #ff16f4;
        background-color: #ff16f4;
        border-radius: 10px 10px 10px 10px;
        cursor: pointer;
    }
    .submit:hover{
        transition-duration: 300ms;
        background-color: #d100d9;
        border: 1px solid #d100d9;
    }
    footer{
        height: 300px;
        width: 100%;
        display: grid;
        place-content: center;
    }
    .footer_heading{
        color: #ff16f4;
        font-size: 30px;
        font-weight: 700;
        text-align: center;
    }
    footer>p{
        color: white;
        text-align: center;
        font-size: 18px;
        margin-top: 20px;
    }
    .footer_links{
        margin-top: 20px;
        display: flex;
        justify-content: space-evenly;
        align-items: center;
    }
    .github_footer{
        color: white;
        font-size: 34px;
        text-decoration: none;
    }
    .x_footer{
        color: white;
        font-size: 34px;
        text-decoration: none;
    }
    .linkedin_footer{
        font-size: 34px;
        color: #5676ff;
        text-decoration: none;
    }
    .email_footer{
        color: orangered;
        text-decoration: none;
        font-size: 34px;
    }


}
@media screen and (min-width:894px) and (max-width:944px){
    header{
        height: 80px;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    nav{
        height: 70px;
        width: 100%;
        display: flex;
        justify-content: space-evenly;
        align-items: center;
        backdrop-filter: blur(30px);
        position: fixed;
    }
    .sidenav{
        display: none;
    }
    .sidebar{
        display: none;
    }
    .logo{
        font-size: 20px;
        font-weight: 700;
        color: white;
    }
    .nav_links{
        height: 100%;
        width: 50vw;
        display: flex;
        align-items: center;
        justify-content: space-evenly;
    }
    .nav_links>a{
        height: 35px;
        width: 8vw;
        display: inline-block;
        text-decoration: none;
        text-align: center;
        align-content: center;
        font-weight: 600;
        color: white;
        border: 2px solid #ff16f4;
        border-radius: 18px 18px 18px 18px;
        font-size: 14px;
    }
    .nav_links>a:hover{
        background-color: #ff16f4;
        color: black;
        font-weight: 600;
        box-shadow: 0px 0px 15px #ff16f4;
        transition-duration: 300ms;
    }
    .Resume{
        height: 35px;
        width: 8vw;
        border-radius: 18px 18px 18px 18px;
        display: inline-block;
        text-align: center;
        align-content: center;
        text-decoration: none;
        border: 1px solid #ff16f4;
        background-color: #ff16f4;
        color: black;
        font-weight: 600;
        font-size: 14px;
    }
    .Resume:hover{
        transition-duration: 150ms;
        box-shadow: 0px 0px 18px #ff16f4;
    }
    section{
        height: 3600px;
        width: 100%;
        border: 2px solid white;
        border-top: none;
        border-left: none;
        border-right: none;
    }
    .About{
        height: 600px;
        width: 100%;
        display: flex;
        justify-content: space-evenly;
        align-items: center;
    }
    .About_img{
        height: 500px;
        width: 36vw;
    }
    .About_img>img{
        height: 100%;
        width: 100%;
        border-radius: 100px 100px 100px 100px;
    }
    .About_info{
        height: 400px;
        width: 40vw;
    }
    .name{
        font-size: 26px;
        font-weight: 700;
        color: white;
    }
    .job{
        font-size: 26px;
        font-weight: 700;
        color: #ff16f4;
    }
    .info{
        height: 130px;
        width: 100%;
    }
    .info>p{
        color: white;
        font-size: 16px;
        font-weight: 500;
    }
    .profiles{
        text-align: center;
    }
    .github_link{
        font-size: 28px;
        color: white;
    }
    .linkedin_link{
        text-decoration: none;
        font-size: 28px;
        color: #5676ff;
    }
    .x_link{
        text-decoration: none;
        font-size: 28px;
        color: white;
    }
    .download_resume{
        height: 100px;
        width: 100%;
        align-content: center;
        text-align: center;
    }
    .download_resume>a{
        height: 60px;
        width: 18vw;
        display: inline-block;
        align-content: center;
        text-align: center;
        background-color: #d100d9;
        border-radius: 10px 10px 10px 10px;
        text-decoration: none;
        color: black;
        font-weight: 600;
        font-size: 13px;
    }
    .download_resume>a:hover{
        transition-duration: 300ms;
        background-color: #ad00b1;
        box-shadow: 0px 0px 18px #ad00b1;
    }
    .tech_stack{
        height: 350px;
        width: 100%;
        align-content: center;
    }
    .tech_stack_heading{
        color: #ff16f4;
        font-weight: 700;
        text-align: center;
        font-size: 35px;
    }
    .stack_div{
        height: 200px;
        width: 100%;
        text-align: center;
        align-content: center;
    }
    .html,.css,.javascript,.tailwind,.bootstrap,.php,.mysql{
        height: 100px;
        width: 12vw;
        background-color: transparent;
        border-radius: 8px 8px 8px 8px;
    }
    .html{
        border: 1.5px solid orange;
    }
    .html:hover{
        box-shadow: 0px 0px 20px orange;
        transition-duration: 300ms;
        background-color: #9999993d;
    }
    .html>img{
        height: 29px;
    }
    .html>p{
        color: white;
        font-weight: 600;
    }
    .css{
        border: 1.5px solid blue;
    }
    .css:hover{
        background-color: #9999993d;
        box-shadow: 0px 0px 20px blue;
        transition-duration: 300ms;
    }
    .css>img{
        height: 27px;
    }
    .css>p{
        color: white;
        font-weight: 600;
    }
    .javascript{
        border: 1.5px solid yellow;
    }
    .javascript:hover{
        background-color: #9999993d;
        box-shadow: 0px 0px 20px yellow;
        transition-duration: 300ms;
    }
    .javascript>img{
        height: 29px;
    }
    .javascript>p{
        color: white;
        font-weight: 600;
    }
    .tailwind{
        border: 1.5px solid lightblue;
    }
    .tailwind>img{
        height: 28px;
    }
    .tailwind>p{
        color: white;
        font-weight: 600;
    }
    .tailwind:hover{
        transition-duration: 300ms;
        background-color: #9999993d;
        box-shadow: 0px 0px 20px lightblue;
    }
    .bootstrap{
        border: 1.5px solid #ad00b1;
    }
    .bootstrap:hover{
        background-color: #9999993d;
        box-shadow: 0px 0px 20px #ad00b1;
        transition-duration: 300ms;
    }
    .bootstrap>img{
        height: 28px;
    }
    .bootstrap>p{
        color: white;
        font-weight: 600;
    }
    .php{
        border: 1.5px solid #ff16f4;
    }
    .php:hover{
        transition-duration: 300ms;
        box-shadow: 0px 0px 20px #ff16f4;
        background-color: #9999993d;
    }
    .php>img{
        height: 28px;
    }
    .php>p{
        color: white;
        font-weight: 600;
    }
    .mysql{
        border: 1.5px solid lightskyblue;
    }
    .mysql:hover{
        transition-duration: 300ms;
        box-shadow: 0px 0px 20px lightskyblue;
        background-color: #9999993d;
    }
    .mysql>img{
        height: 28px;
    }
    .mysql>p{
        color: white;
        font-weight: 600;
    }
    .services{
        height: 450px;
        width: 100%;
        align-content: center;
    }
    .services_heading{
        color: #ff16f4;
        font-weight: 700;
        text-align: center;
        font-size: 34px;
    }
    .my_offer{
        height: 360px;
        display: flex;
        justify-content: space-evenly;
        align-items: center;
        flex-wrap: wrap;
    }
    .the_offers{
        height: 140px;
        width: 36vw;
        text-align: center;
        align-content: center;
        border-radius: 8px 8px 8px 8px;
    }
    .the_offers:hover{
        transition-duration: 300ms;
        box-shadow: 0px 0px 20px #ff16f4;
    }
    .the_offers>i{
        font-size: 20px;
        color: #ff16f4;
        text-align: center;
    }
    .the_offers>p{
        font-weight: 600;
        font-size: 18px;
        color: white;
        text-align: center;
    }
    .the_offers>div{
        font-size: 13px;
        color: white;
    }
    .projects{
        height: 700px;
        width: 100%;
        align-content: center;
    }
    .projects_heading{
        font-size: 34px;
        color: #ff16f4;
        font-weight: 700;
        text-align: center;
    }
    .projects_div{
        height: 530px;
        width: 100%;
        display: flex;
        justify-content: space-evenly;
        align-items: center;
    }
    .projects_div>div{
        height: 450px;
        width: 40vw;
        border: 2px solid #ff16f4;
        text-align: center;
        border-radius: 18px 18px 18px 18px;
    }
    .projects_div>div:hover{
        transition-duration: 300ms;
        box-shadow: 0px 0px 30px #ff16f4;
        background-color: #9999993d;
    }
    .project_name{
        font-size: 20px;
        text-align: center;
        font-weight: 700;
        color: #ff16f4;
    }
    .project_img{
        height: 200px;
        width: 100%;
        border-top-left-radius: inherit;
        border-top-right-radius: inherit;
        border-bottom: 2px solid #ff16f4;
    }
    .project_info{
        height: 60px;
        color: white;
        border: 1px solid black;
        text-align: center;
        align-content: center;
        font-size: 14px;
    }
    .project_stack{
        display: flex;
        justify-content: space-evenly;
        flex-wrap: wrap;
        color: white;
        margin-top: 4px;
    }
    .project_stack>p{
        width: 7vw;
        height: 30px;
        border: 1px solid #ff16f4;
        align-content: center;
        border-radius: 18px 18px 18px 18px;
        background-color: #ff16f4;
        font-size: 12px;
        box-shadow: 3px 3px 0px white;
        font-weight: 600;
    }
   
    .project_links{
        display: flex;
        justify-content: space-evenly;
        margin-top: 10px;
    }
    .github_repo{
        height: 30px;
        width: 8vw;
        transition-duration: 300ms;
        text-align: center;
        align-content: center;
        color: black;
        background-color: white;
        text-decoration: none;
        display: inline-block;
        border-radius: 8px 8px 8px 8px;
        border: 1px solid white;
        display: flex;
        align-items: center;
        justify-content: space-evenly;
        font-size: 13px;
        font-weight: 600;
    }
    .github_repo:hover{
        border: 1px solid #b0b0b0;
        background-color: #b0b0b0;
    }
    .demo{
        background-color: #ff16f4;
        color: black;
        display: inline-block;
        width: 10vw;
        height: 30px;
        text-decoration: none;
        text-align: center;
        align-content: center;
        border-radius: 8px 8px 8px 8px;
        font-weight: 600;
    }
    .demo:hover{
        transition-duration: 300ms;
        border: 1px solid purple;
        background-color: purple;
    }
    .certifications{
        height: 500px;
        width: 100%;
        align-content: center;
    }
    .certifications_heading{
        color: #ff16f4;
        font-weight: 700;
        font-size: 34px;
        text-align: center;
    }
    .certifications_div{
        height: 350px;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-evenly;
    }
    .certificates{
        height: 300px;
        width: 36vw;
        border-radius: 20px 20px 20px 20px;
        text-align: center;
        align-content: center;
    }
    .certificates:hover{
        transition-duration: 300ms;
        box-shadow: 0px 0px 25px #ff16f4;
    }
    .certificate_name{
        color: #ff16f4;
        font-weight: 600;
        font-size: 18px;
    }
    .platform{
        color: white;
        font-weight: 600;
        font-size: 16px;
    }
    .view_certificate{
        height: 80px;
        width: 100%;
        align-content: center;
    }
    
    .view_certificate>a{
        height: 35px;
        width: 10vw;
        border: 1px solid #ff16f4;
        background-color: #ff16f4;
        color: black;
        display: inline-block;
        align-content: center;
        border-radius: 10px 10px 10px 10px;
        text-decoration: none;
        font-weight: 600;
    }
    .view_certificate>a:hover{
        transition: 300ms;
        box-shadow: 0px 0px 10px #ff16f4;
    }
    .contacts{
        height: 800px;
        width: 100%;
        display: grid;
        place-content: center;
    }
    .contacts_heading{
        font-size: 34px;
        font-weight: 700;
        color: #ff16f4;
        text-align: center;
    }
    
    form{
        height: 600px;
        width: 50vw;
        border: 2px solid #ff16f4;
        display: grid;
        place-content: center;
        gap: 20px;
        border-radius: 20px 20px 20px 20px;
    }
    form>p{
        color: white;
        font-size: 28px;
        font-weight: 700;
        text-align: center;
    }
    .fullname,.email{
        height: 80px;
        width: 40vw;
        color: white;
        font-weight: 500;
    }
    .fullname>input,.email>input{
        height: 40px;
        width: 39vw;
        border-radius: 6px 6px 6px 6px;
        border: 1.5px solid white;
        background-color: transparent;
        margin-top: 10px;
        color: white;
        text-indent: 20px;
    }
    .fullname>input:focus,.email>input:focus{
        outline: 1.5px solid #ff16f4;
    }
    .message{
        height: 130px;
        width: 40vw;
        align-content: center;
        color: white;
    }
    .message>textarea{
        height: 85px;
        width: 39vw;
        text-indent: 20px;
        background-color: transparent;
        border-radius: 6px 6px 6px 6px;
        border: 1.5px solid white;
        color: white;
        margin-top: 10px;
    }
    .message>textarea:focus{
        outline: 1.5px solid #ff16f4;
    }
    .submit{
        height: 50px;
        font-size: 20px;
        font-weight: 600;
        border: 1px solid #ff16f4;
        background-color: #ff16f4;
        border-radius: 10px 10px 10px 10px;
        cursor: pointer;
    }
    .submit:hover{
        transition-duration: 300ms;
        background-color: #d100d9;
        border: 1px solid #d100d9;
    }
    footer{
        height: 300px;
        width: 100%;
        display: grid;
        place-content: center;
    }
    .footer_heading{
        color: #ff16f4;
        font-size: 30px;
        font-weight: 700;
        text-align: center;
    }
    footer>p{
        color: white;
        text-align: center;
        font-size: 18px;
        margin-top: 20px;
    }
    .footer_links{
        margin-top: 20px;
        display: flex;
        justify-content: space-evenly;
        align-items: center;
    }
    .github_footer{
        color: white;
        font-size: 34px;
        text-decoration: none;
    }
    .x_footer{
        color: white;
        font-size: 34px;
        text-decoration: none;
    }
    .linkedin_footer{
        font-size: 34px;
        color: #5676ff;
        text-decoration: none;
    }
    .email_footer{
        color: orangered;
        text-decoration: none;
        font-size: 34px;
    }

}
@media screen and (min-width:945px) and (max-width:995px){
    header{
        height: 80px;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    nav{
        height: 70px;
        width: 100%;
        display: flex;
        justify-content: space-evenly;
        align-items: center;
        backdrop-filter: blur(30px);
        position: fixed;
    }
    .sidenav{
        display: none;
    }
    .sidebar{
        display: none;
    }
    .logo{
        font-size: 20px;
        font-weight: 700;
        color: white;
    }
    .nav_links{
        height: 100%;
        width: 50vw;
        display: flex;
        align-items: center;
        justify-content: space-evenly;
    }
    .nav_links>a{
        height: 35px;
        width: 8vw;
        display: inline-block;
        text-decoration: none;
        text-align: center;
        align-content: center;
        font-weight: 600;
        color: white;
        border: 2px solid #ff16f4;
        border-radius: 18px 18px 18px 18px;
        font-size: 14px;
    }
    .nav_links>a:hover{
        background-color: #ff16f4;
        color: black;
        font-weight: 600;
        box-shadow: 0px 0px 15px #ff16f4;
        transition-duration: 300ms;
    }
    .Resume{
        height: 35px;
        width: 8vw;
        border-radius: 18px 18px 18px 18px;
        display: inline-block;
        text-align: center;
        align-content: center;
        text-decoration: none;
        border: 1px solid #ff16f4;
        background-color: #ff16f4;
        color: black;
        font-weight: 600;
        font-size: 14px;
    }
    .Resume:hover{
        transition-duration: 150ms;
        box-shadow: 0px 0px 18px #ff16f4;
    }
    section{
        height: 3600px;
        width: 100%;
        border: 2px solid white;
        border-top: none;
        border-left: none;
        border-right: none;
    }
    .About{
        height: 600px;
        width: 100%;
        display: flex;
        justify-content: space-evenly;
        align-items: center;
    }
    .About_img{
        height: 500px;
        width: 32vw;
    }
    .About_img>img{
        height: 100%;
        width: 100%;
        border-radius: 100px 100px 100px 100px;
    }
    .About_info{
        height: 400px;
        width: 40vw;
    }
    .name{
        font-size: 26px;
        font-weight: 700;
        color: white;
    }
    .job{
        font-size: 26px;
        font-weight: 700;
        color: #ff16f4;
    }
    .info{
        height: 130px;
        width: 100%;
    }
    .info>p{
        color: white;
        font-size: 18px;
        font-weight: 500;
    }
    .profiles{
        text-align: center;
    }
    .github_link{
        font-size: 28px;
        color: white;
    }
    .linkedin_link{
        text-decoration: none;
        font-size: 28px;
        color: #5676ff;
    }
    .x_link{
        text-decoration: none;
        font-size: 28px;
        color: white;
    }
    .download_resume{
        height: 100px;
        width: 100%;
        align-content: center;
        text-align: center;
    }
    .download_resume>a{
        height: 60px;
        width: 18vw;
        display: inline-block;
        align-content: center;
        text-align: center;
        background-color: #d100d9;
        border-radius: 10px 10px 10px 10px;
        text-decoration: none;
        color: black;
        font-weight: 600;
    }
    .download_resume>a:hover{
        transition-duration: 300ms;
        background-color: #ad00b1;
        box-shadow: 0px 0px 18px #ad00b1;
    }
    .tech_stack{
        height: 350px;
        width: 100%;
        align-content: center;
    }
    .tech_stack_heading{
        color: #ff16f4;
        font-weight: 700;
        text-align: center;
        font-size: 35px;
    }
    .stack_div{
        height: 200px;
        width: 100%;
        text-align: center;
        align-content: center;
    }
    .html,.css,.javascript,.tailwind,.bootstrap,.php,.mysql{
        height: 100px;
        width: 10vw;
        background-color: transparent;
        border-radius: 8px 8px 8px 8px;
    }
    .html{
        border: 1.5px solid orange;
    }
    .html:hover{
        box-shadow: 0px 0px 20px orange;
        transition-duration: 300ms;
        background-color: #9999993d;
    }
    .html>img{
        height: 29px;
    }
    .html>p{
        color: white;
        font-weight: 600;
    }
    .css{
        border: 1.5px solid blue;
    }
    .css:hover{
        background-color: #9999993d;
        box-shadow: 0px 0px 20px blue;
        transition-duration: 300ms;
    }
    .css>img{
        height: 27px;
    }
    .css>p{
        color: white;
        font-weight: 600;
    }
    .javascript{
        border: 1.5px solid yellow;
    }
    .javascript:hover{
        background-color: #9999993d;
        box-shadow: 0px 0px 20px yellow;
        transition-duration: 300ms;
    }
    .javascript>img{
        height: 29px;
    }
    .javascript>p{
        color: white;
        font-weight: 600;
    }
    .tailwind{
        border: 1.5px solid lightblue;
    }
    .tailwind>img{
        height: 28px;
    }
    .tailwind>p{
        color: white;
        font-weight: 600;
    }
    .tailwind:hover{
        transition-duration: 300ms;
        background-color: #9999993d;
        box-shadow: 0px 0px 20px lightblue;
    }
    .bootstrap{
        border: 1.5px solid #ad00b1;
    }
    .bootstrap:hover{
        background-color: #9999993d;
        box-shadow: 0px 0px 20px #ad00b1;
        transition-duration: 300ms;
    }
    .bootstrap>img{
        height: 28px;
    }
    .bootstrap>p{
        color: white;
        font-weight: 600;
    }
    .php{
        border: 1.5px solid #ff16f4;
    }
    .php:hover{
        transition-duration: 300ms;
        box-shadow: 0px 0px 20px #ff16f4;
        background-color: #9999993d;
    }
    .php>img{
        height: 28px;
    }
    .php>p{
        color: white;
        font-weight: 600;
    }
    .mysql{
        border: 1.5px solid lightskyblue;
    }
    .mysql:hover{
        transition-duration: 300ms;
        box-shadow: 0px 0px 20px lightskyblue;
        background-color: #9999993d;
    }
    .mysql>img{
        height: 28px;
    }
    .mysql>p{
        color: white;
        font-weight: 600;
    }
    .services{
        height: 450px;
        width: 100%;
        align-content: center;
    }
    .services_heading{
        color: #ff16f4;
        font-weight: 700;
        text-align: center;
        font-size: 34px;
    }
    .my_offer{
        height: 360px;
        display: flex;
        justify-content: space-evenly;
        align-items: center;
        flex-wrap: wrap;
    }
    .the_offers{
        height: 140px;
        width: 30vw;
        text-align: center;
        align-content: center;
        border-radius: 8px 8px 8px 8px;
    }
    .the_offers:hover{
        transition-duration: 300ms;
        box-shadow: 0px 0px 20px #ff16f4;
    }
    .the_offers>i{
        font-size: 20px;
        color: #ff16f4;
        text-align: center;
    }
    .the_offers>p{
        font-weight: 600;
        font-size: 18px;
        color: white;
        text-align: center;
    }
    .the_offers>div{
        font-size: 13px;
        color: white;
    }
    .projects{
        height: 700px;
        width: 100%;
        align-content: center;
    }
    .projects_heading{
        font-size: 34px;
        color: #ff16f4;
        font-weight: 700;
        text-align: center;
    }
    .projects_div{
        height: 530px;
        width: 100%;
        display: flex;
        justify-content: space-evenly;
        align-items: center;
    }
    .projects_div>div{
        height: 450px;
        width: 35vw;
        border: 2px solid #ff16f4;
        text-align: center;
        border-radius: 18px 18px 18px 18px;
    }
    .projects_div>div:hover{
        transition-duration: 300ms;
        box-shadow: 0px 0px 30px #ff16f4;
        background-color: #9999993d;
    }
    .project_name{
        font-size: 20px;
        text-align: center;
        font-weight: 700;
        color: #ff16f4;
    }
    .project_img{
        height: 180px;
        width: 100%;
        border-top-left-radius: inherit;
        border-top-right-radius: inherit;
        border-bottom: 2px solid #ff16f4;
    }
    .project_info{
        height: 60px;
        color: white;
        border: 1px solid black;
        text-align: center;
        align-content: center;
        font-size: 14px;
    }
    .project_stack{
        display: flex;
        justify-content: space-evenly;
        flex-wrap: wrap;
        color: white;
        margin-top: 4px;
    }
    .project_stack>p{
        width: 6vw;
        height: 30px;
        border: 1px solid #ff16f4;
        align-content: center;
        border-radius: 18px 18px 18px 18px;
        background-color: #ff16f4;
        font-size: 12px;
        box-shadow: 3px 3px 0px white;
        font-weight: 600;
    }
   
    .project_links{
        display: flex;
        justify-content: space-evenly;
        margin-top: 10px;
    }
    .github_repo{
        height: 30px;
        width: 8vw;
        transition-duration: 300ms;
        text-align: center;
        align-content: center;
        color: black;
        background-color: white;
        text-decoration: none;
        display: inline-block;
        border-radius: 8px 8px 8px 8px;
        border: 1px solid white;
        display: flex;
        align-items: center;
        justify-content: space-evenly;
        font-size: 13px;
        font-weight: 600;
    }
    .github_repo:hover{
        border: 1px solid #b0b0b0;
        background-color: #b0b0b0;
    }
    .demo{
        background-color: #ff16f4;
        color: black;
        display: inline-block;
        width: 10vw;
        height: 30px;
        text-decoration: none;
        text-align: center;
        align-content: center;
        border-radius: 8px 8px 8px 8px;
        font-weight: 600;
    }
    .demo:hover{
        transition-duration: 300ms;
        border: 1px solid purple;
        background-color: purple;
    }
    .certifications{
        height: 500px;
        width: 100%;
        align-content: center;
    }
    .certifications_heading{
        color: #ff16f4;
        font-weight: 700;
        font-size: 34px;
        text-align: center;
    }
    .certifications_div{
        height: 350px;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-evenly;
    }
    .certificates{
        height: 300px;
        width: 30vw;
        border-radius: 20px 20px 20px 20px;
        text-align: center;
        align-content: center;
    }
    .certificates:hover{
        transition-duration: 300ms;
        box-shadow: 0px 0px 25px #ff16f4;
    }
    .certificate_name{
        color: #ff16f4;
        font-weight: 600;
        font-size: 18px;
    }
    .platform{
        color: white;
        font-weight: 600;
        font-size: 16px;
    }
    .view_certificate{
        height: 80px;
        width: 100%;
        align-content: center;
    }
    
    .view_certificate>a{
        height: 35px;
        width: 10vw;
        border: 1px solid #ff16f4;
        background-color: #ff16f4;
        color: black;
        display: inline-block;
        align-content: center;
        border-radius: 10px 10px 10px 10px;
        text-decoration: none;
        font-weight: 600;
    }
    .view_certificate>a:hover{
        transition: 300ms;
        box-shadow: 0px 0px 10px #ff16f4;
    }
    .contacts{
        height: 800px;
        width: 100%;
        display: grid;
        place-content: center;
    }
    .contacts_heading{
        font-size: 34px;
        font-weight: 700;
        color: #ff16f4;
        text-align: center;
    }
    
    form{
        height: 600px;
        width: 50vw;
        border: 2px solid #ff16f4;
        display: grid;
        place-content: center;
        gap: 20px;
        border-radius: 20px 20px 20px 20px;
    }
    form>p{
        color: white;
        font-size: 28px;
        font-weight: 700;
        text-align: center;
    }
    .fullname,.email{
        height: 80px;
        width: 40vw;
        color: white;
        font-weight: 500;
    }
    .fullname>input,.email>input{
        height: 40px;
        width: 39vw;
        border-radius: 6px 6px 6px 6px;
        border: 1.5px solid white;
        background-color: transparent;
        margin-top: 10px;
        color: white;
        text-indent: 20px;
    }
    .fullname>input:focus,.email>input:focus{
        outline: 1.5px solid #ff16f4;
    }
    .message{
        height: 130px;
        width: 40vw;
        align-content: center;
        color: white;
    }
    .message>textarea{
        height: 85px;
        width: 39vw;
        text-indent: 20px;
        background-color: transparent;
        border-radius: 6px 6px 6px 6px;
        border: 1.5px solid white;
        color: white;
        margin-top: 10px;
    }
    .message>textarea:focus{
        outline: 1.5px solid #ff16f4;
    }
    .submit{
        height: 50px;
        font-size: 20px;
        font-weight: 600;
        border: 1px solid #ff16f4;
        background-color: #ff16f4;
        border-radius: 10px 10px 10px 10px;
        cursor: pointer;
    }
    .submit:hover{
        transition-duration: 300ms;
        background-color: #d100d9;
        border: 1px solid #d100d9;
    }
    footer{
        height: 300px;
        width: 100%;
        display: grid;
        place-content: center;
    }
    .footer_heading{
        color: #ff16f4;
        font-size: 30px;
        font-weight: 700;
        text-align: center;
    }
    footer>p{
        color: white;
        text-align: center;
        font-size: 18px;
        margin-top: 20px;
    }
    .footer_links{
        margin-top: 20px;
        display: flex;
        justify-content: space-evenly;
        align-items: center;
    }
    .github_footer{
        color: white;
        font-size: 34px;
        text-decoration: none;
    }
    .x_footer{
        color: white;
        font-size: 34px;
        text-decoration: none;
    }
    .linkedin_footer{
        font-size: 34px;
        color: #5676ff;
        text-decoration: none;
    }
    .email_footer{
        color: orangered;
        text-decoration: none;
        font-size: 34px;
    }

}
@media screen and (min-width:996px) and (max-width:1046px){
    header{
        height: 80px;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    nav{
        height: 70px;
        width: 100%;
        display: flex;
        justify-content: space-evenly;
        align-items: center;
        backdrop-filter: blur(30px);
        position: fixed;
    }
    .sidenav{
        display: none;
    }
    .sidebar{
        display: none;
    }
    .logo{
        font-size: 20px;
        font-weight: 700;
        color: white;
    }
    .nav_links{
        height: 100%;
        width: 50vw;
        display: flex;
        align-items: center;
        justify-content: space-evenly;
    }
    .nav_links>a{
        height: 35px;
        width: 8vw;
        display: inline-block;
        text-decoration: none;
        text-align: center;
        align-content: center;
        font-weight: 600;
        color: white;
        border: 2px solid #ff16f4;
        border-radius: 18px 18px 18px 18px;
        font-size: 14px;
    }
    .nav_links>a:hover{
        background-color: #ff16f4;
        color: black;
        font-weight: 600;
        box-shadow: 0px 0px 15px #ff16f4;
        transition-duration: 300ms;
    }
    .Resume{
        height: 35px;
        width: 8vw;
        border-radius: 18px 18px 18px 18px;
        display: inline-block;
        text-align: center;
        align-content: center;
        text-decoration: none;
        border: 1px solid #ff16f4;
        background-color: #ff16f4;
        color: black;
        font-weight: 600;
        font-size: 14px;
    }
    .Resume:hover{
        transition-duration: 150ms;
        box-shadow: 0px 0px 18px #ff16f4;
    }
    section{
        height: 3600px;
        width: 100%;
        border: 2px solid white;
        border-top: none;
        border-left: none;
        border-right: none;
    }
    .About{
        height: 600px;
        width: 100%;
        display: flex;
        justify-content: space-evenly;
        align-items: center;
    }
    .About_img{
        height: 500px;
        width: 32vw;
    }
    .About_img>img{
        height: 100%;
        width: 100%;
        border-radius: 100px 100px 100px 100px;
    }
    .About_info{
        height: 400px;
        width: 40vw;
    }
    .name{
        font-size: 26px;
        font-weight: 700;
        color: white;
    }
    .job{
        font-size: 26px;
        font-weight: 700;
        color: #ff16f4;
    }
    .info{
        height: 130px;
        width: 100%;
    }
    .info>p{
        color: white;
        font-size: 18px;
        font-weight: 500;
    }
    .profiles{
        text-align: center;
    }
    .github_link{
        font-size: 28px;
        color: white;
    }
    .linkedin_link{
        text-decoration: none;
        font-size: 28px;
        color: #5676ff;
    }
    .x_link{
        text-decoration: none;
        font-size: 28px;
        color: white;
    }
    .download_resume{
        height: 100px;
        width: 100%;
        align-content: center;
        text-align: center;
    }
    .download_resume>a{
        height: 60px;
        width: 18vw;
        display: inline-block;
        align-content: center;
        text-align: center;
        background-color: #d100d9;
        border-radius: 10px 10px 10px 10px;
        text-decoration: none;
        color: black;
        font-weight: 600;
    }
    .download_resume>a:hover{
        transition-duration: 300ms;
        background-color: #ad00b1;
        box-shadow: 0px 0px 18px #ad00b1;
    }
    .tech_stack{
        height: 350px;
        width: 100%;
        align-content: center;
    }
    .tech_stack_heading{
        color: #ff16f4;
        font-weight: 700;
        text-align: center;
        font-size: 35px;
    }
    .stack_div{
        height: 200px;
        width: 100%;
        text-align: center;
        align-content: center;
    }
    .html,.css,.javascript,.tailwind,.bootstrap,.php,.mysql{
        height: 100px;
        width: 10vw;
        background-color: transparent;
        border-radius: 8px 8px 8px 8px;
    }
    .html{
        border: 1.5px solid orange;
    }
    .html:hover{
        box-shadow: 0px 0px 20px orange;
        transition-duration: 300ms;
        background-color: #9999993d;
    }
    .html>img{
        height: 29px;
    }
    .html>p{
        color: white;
        font-weight: 600;
    }
    .css{
        border: 1.5px solid blue;
    }
    .css:hover{
        background-color: #9999993d;
        box-shadow: 0px 0px 20px blue;
        transition-duration: 300ms;
    }
    .css>img{
        height: 27px;
    }
    .css>p{
        color: white;
        font-weight: 600;
    }
    .javascript{
        border: 1.5px solid yellow;
    }
    .javascript:hover{
        background-color: #9999993d;
        box-shadow: 0px 0px 20px yellow;
        transition-duration: 300ms;
    }
    .javascript>img{
        height: 29px;
    }
    .javascript>p{
        color: white;
        font-weight: 600;
    }
    .tailwind{
        border: 1.5px solid lightblue;
    }
    .tailwind>img{
        height: 28px;
    }
    .tailwind>p{
        color: white;
        font-weight: 600;
    }
    .tailwind:hover{
        transition-duration: 300ms;
        background-color: #9999993d;
        box-shadow: 0px 0px 20px lightblue;
    }
    .bootstrap{
        border: 1.5px solid #ad00b1;
    }
    .bootstrap:hover{
        background-color: #9999993d;
        box-shadow: 0px 0px 20px #ad00b1;
        transition-duration: 300ms;
    }
    .bootstrap>img{
        height: 28px;
    }
    .bootstrap>p{
        color: white;
        font-weight: 600;
    }
    .php{
        border: 1.5px solid #ff16f4;
    }
    .php:hover{
        transition-duration: 300ms;
        box-shadow: 0px 0px 20px #ff16f4;
        background-color: #9999993d;
    }
    .php>img{
        height: 28px;
    }
    .php>p{
        color: white;
        font-weight: 600;
    }
    .mysql{
        border: 1.5px solid lightskyblue;
    }
    .mysql:hover{
        transition-duration: 300ms;
        box-shadow: 0px 0px 20px lightskyblue;
        background-color: #9999993d;
    }
    .mysql>img{
        height: 28px;
    }
    .mysql>p{
        color: white;
        font-weight: 600;
    }
    .services{
        height: 450px;
        width: 100%;
        align-content: center;
    }
    .services_heading{
        color: #ff16f4;
        font-weight: 700;
        text-align: center;
        font-size: 34px;
    }
    .my_offer{
        height: 360px;
        display: flex;
        justify-content: space-evenly;
        align-items: center;
        flex-wrap: wrap;
    }
    .the_offers{
        height: 140px;
        width: 30vw;
        text-align: center;
        align-content: center;
        border-radius: 8px 8px 8px 8px;
    }
    .the_offers:hover{
        transition-duration: 300ms;
        box-shadow: 0px 0px 20px #ff16f4;
    }
    .the_offers>i{
        font-size: 20px;
        color: #ff16f4;
        text-align: center;
    }
    .the_offers>p{
        font-weight: 600;
        font-size: 18px;
        color: white;
        text-align: center;
    }
    .the_offers>div{
        font-size: 13px;
        color: white;
    }
    .projects{
        height: 700px;
        width: 100%;
        align-content: center;
    }
    .projects_heading{
        font-size: 34px;
        color: #ff16f4;
        font-weight: 700;
        text-align: center;
    }
    .projects_div{
        height: 530px;
        width: 100%;
        display: flex;
        justify-content: space-evenly;
        align-items: center;
    }
    .projects_div>div{
        height: 450px;
        width: 35vw;
        border: 2px solid #ff16f4;
        text-align: center;
        border-radius: 18px 18px 18px 18px;
    }
    .projects_div>div:hover{
        transition-duration: 300ms;
        box-shadow: 0px 0px 30px #ff16f4;
        background-color: #9999993d;
    }
    .project_name{
        font-size: 20px;
        text-align: center;
        font-weight: 700;
        color: #ff16f4;
    }
    .project_img{
        height: 200px;
        width: 100%;
        border-top-left-radius: inherit;
        border-top-right-radius: inherit;
        border-bottom: 2px solid #ff16f4;
    }
    .project_info{
        height: 60px;
        color: white;
        border: 1px solid black;
        text-align: center;
        align-content: center;
        font-size: 14px;
    }
    .project_stack{
        display: flex;
        justify-content: space-evenly;
        flex-wrap: wrap;
        color: white;
        margin-top: 4px;
    }
    .project_stack>p{
        width: 6vw;
        height: 30px;
        border: 1px solid #ff16f4;
        align-content: center;
        border-radius: 18px 18px 18px 18px;
        background-color: #ff16f4;
        font-size: 12px;
        box-shadow: 3px 3px 0px white;
        font-weight: 600;
    }
   
    .project_links{
        display: flex;
        justify-content: space-evenly;
        margin-top: 10px;
    }
    .github_repo{
        height: 30px;
        width: 8vw;
        transition-duration: 300ms;
        text-align: center;
        align-content: center;
        color: black;
        background-color: white;
        text-decoration: none;
        display: inline-block;
        border-radius: 8px 8px 8px 8px;
        border: 1px solid white;
        display: flex;
        align-items: center;
        justify-content: space-evenly;
        font-size: 13px;
        font-weight: 600;
    }
    .github_repo:hover{
        border: 1px solid #b0b0b0;
        background-color: #b0b0b0;
    }
    .demo{
        background-color: #ff16f4;
        color: black;
        display: inline-block;
        width: 10vw;
        height: 30px;
        text-decoration: none;
        text-align: center;
        align-content: center;
        border-radius: 8px 8px 8px 8px;
        font-weight: 600;
    }
    .demo:hover{
        transition-duration: 300ms;
        border: 1px solid purple;
        background-color: purple;
    }
    .certifications{
        height: 500px;
        width: 100%;
        align-content: center;
    }
    .certifications_heading{
        color: #ff16f4;
        font-weight: 700;
        font-size: 34px;
        text-align: center;
    }
    .certifications_div{
        height: 350px;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-evenly;
    }
    .certificates{
        height: 300px;
        width: 30vw;
        border-radius: 20px 20px 20px 20px;
        text-align: center;
        align-content: center;
    }
    .certificates:hover{
        transition-duration: 300ms;
        box-shadow: 0px 0px 25px #ff16f4;
    }
    .certificate_name{
        color: #ff16f4;
        font-weight: 600;
        font-size: 18px;
    }
    .platform{
        color: white;
        font-weight: 600;
        font-size: 16px;
    }
    .view_certificate{
        height: 80px;
        width: 100%;
        align-content: center;
    }
    
    .view_certificate>a{
        height: 35px;
        width: 10vw;
        border: 1px solid #ff16f4;
        background-color: #ff16f4;
        color: black;
        display: inline-block;
        align-content: center;
        border-radius: 10px 10px 10px 10px;
        text-decoration: none;
        font-weight: 600;
    }
    .view_certificate>a:hover{
        transition: 300ms;
        box-shadow: 0px 0px 10px #ff16f4;
    }
    .contacts{
        height: 800px;
        width: 100%;
        display: grid;
        place-content: center;
    }
    .contacts_heading{
        font-size: 34px;
        font-weight: 700;
        color: #ff16f4;
        text-align: center;
    }
    
    form{
        height: 600px;
        width: 50vw;
        border: 2px solid #ff16f4;
        display: grid;
        place-content: center;
        gap: 20px;
        border-radius: 20px 20px 20px 20px;
    }
    form>p{
        color: white;
        font-size: 28px;
        font-weight: 700;
        text-align: center;
    }
    .fullname,.email{
        height: 80px;
        width: 40vw;
        color: white;
        font-weight: 500;
    }
    .fullname>input,.email>input{
        height: 40px;
        width: 39vw;
        border-radius: 6px 6px 6px 6px;
        border: 1.5px solid white;
        background-color: transparent;
        margin-top: 10px;
        color: white;
        text-indent: 20px;
    }
    .fullname>input:focus,.email>input:focus{
        outline: 1.5px solid #ff16f4;
    }
    .message{
        height: 130px;
        width: 40vw;
        align-content: center;
        color: white;
    }
    .message>textarea{
        height: 85px;
        width: 39vw;
        text-indent: 20px;
        background-color: transparent;
        border-radius: 6px 6px 6px 6px;
        border: 1.5px solid white;
        color: white;
        margin-top: 10px;
    }
    .message>textarea:focus{
        outline: 1.5px solid #ff16f4;
    }
    .submit{
        height: 50px;
        font-size: 20px;
        font-weight: 600;
        border: 1px solid #ff16f4;
        background-color: #ff16f4;
        border-radius: 10px 10px 10px 10px;
        cursor: pointer;
    }
    .submit:hover{
        transition-duration: 300ms;
        background-color: #d100d9;
        border: 1px solid #d100d9;
    }
    footer{
        height: 300px;
        width: 100%;
        display: grid;
        place-content: center;
    }
    .footer_heading{
        color: #ff16f4;
        font-size: 30px;
        font-weight: 700;
        text-align: center;
    }
    footer>p{
        color: white;
        text-align: center;
        font-size: 18px;
        margin-top: 20px;
    }
    .footer_links{
        margin-top: 20px;
        display: flex;
        justify-content: space-evenly;
        align-items: center;
    }
    .github_footer{
        color: white;
        font-size: 34px;
        text-decoration: none;
    }
    .x_footer{
        color: white;
        font-size: 34px;
        text-decoration: none;
    }
    .linkedin_footer{
        font-size: 34px;
        color: #5676ff;
        text-decoration: none;
    }
    .email_footer{
        color: orangered;
        text-decoration: none;
        font-size: 34px;
    }
}
@media screen and (min-width:1047px) and (max-width:1097px){
    header{
        height: 80px;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    nav{
        height: 70px;
        width: 100%;
        display: flex;
        justify-content: space-evenly;
        align-items: center;
        backdrop-filter: blur(30px);
        position: fixed;
    }
    .sidenav{
        display: none;
    }
    .sidebar{
        display: none;
    }
    .logo{
        font-size: 20px;
        font-weight: 700;
        color: white;
    }
    .nav_links{
        height: 100%;
        width: 50vw;
        display: flex;
        align-items: center;
        justify-content: space-evenly;
    }
    .nav_links>a{
        height: 35px;
        width: 8vw;
        display: inline-block;
        text-decoration: none;
        text-align: center;
        align-content: center;
        font-weight: 600;
        color: white;
        border: 2px solid #ff16f4;
        border-radius: 18px 18px 18px 18px;
    }
    .nav_links>a:hover{
        background-color: #ff16f4;
        color: black;
        font-weight: 600;
        box-shadow: 0px 0px 15px #ff16f4;
        transition-duration: 300ms;
    }
    .Resume{
        height: 35px;
        width: 8vw;
        border-radius: 18px 18px 18px 18px;
        display: inline-block;
        text-align: center;
        align-content: center;
        text-decoration: none;
        border: 1px solid #ff16f4;
        background-color: #ff16f4;
        color: black;
        font-weight: 600;
    }
    .Resume:hover{
        transition-duration: 150ms;
        box-shadow: 0px 0px 18px #ff16f4;
    }
    section{
        height: 3600px;
        width: 100%;
        border: 2px solid white;
        border-top: none;
        border-left: none;
        border-right: none;
    }
    .About{
        height: 600px;
        width: 100%;
        display: flex;
        justify-content: space-evenly;
        align-items: center;
    }
    .About_img{
        height: 500px;
        width: 30vw;
    }
    .About_img>img{
        height: 100%;
        width: 100%;
        border-radius: 100px 100px 100px 100px;
    }
    .About_info{
        height: 400px;
        width: 40vw;
    }
    .name{
        font-size: 28px;
        font-weight: 700;
        color: white;
    }
    .job{
        font-size: 28px;
        font-weight: 700;
        color: #ff16f4;
    }
    .info{
        height: 130px;
        width: 100%;
    }
    .info>p{
        color: white;
        font-size: 18px;
        font-weight: 500;
    }
    .profiles{
        text-align: center;
    }
    .github_link{
        font-size: 28px;
        color: white;
    }
    .linkedin_link{
        text-decoration: none;
        font-size: 28px;
        color: #5676ff;
    }
    .x_link{
        text-decoration: none;
        font-size: 28px;
        color: white;
    }
    .download_resume{
        height: 100px;
        width: 100%;
        align-content: center;
        text-align: center;
    }
    .download_resume>a{
        height: 60px;
        width: 16vw;
        display: inline-block;
        align-content: center;
        text-align: center;
        background-color: #d100d9;
        border-radius: 10px 10px 10px 10px;
        text-decoration: none;
        color: black;
        font-weight: 600;
    }
    .download_resume>a:hover{
        transition-duration: 300ms;
        background-color: #ad00b1;
        box-shadow: 0px 0px 18px #ad00b1;
    }
    .tech_stack{
        height: 350px;
        width: 100%;
        align-content: center;
    }
    .tech_stack_heading{
        color: #ff16f4;
        font-weight: 700;
        text-align: center;
        font-size: 35px;
    }
    .stack_div{
        height: 200px;
        width: 100%;
        text-align: center;
        align-content: center;
    }
    .html,.css,.javascript,.tailwind,.bootstrap,.php,.mysql{
        height: 100px;
        width: 10vw;
        background-color: transparent;
        border-radius: 8px 8px 8px 8px;
    }
    .html{
        border: 1.5px solid orange;
    }
    .html:hover{
        box-shadow: 0px 0px 20px orange;
        transition-duration: 300ms;
        background-color: #9999993d;
    }
    .html>img{
        height: 29px;
    }
    .html>p{
        color: white;
        font-weight: 600;
    }
    .css{
        border: 1.5px solid blue;
    }
    .css:hover{
        background-color: #9999993d;
        box-shadow: 0px 0px 20px blue;
        transition-duration: 300ms;
    }
    .css>img{
        height: 27px;
    }
    .css>p{
        color: white;
        font-weight: 600;
    }
    .javascript{
        border: 1.5px solid yellow;
    }
    .javascript:hover{
        background-color: #9999993d;
        box-shadow: 0px 0px 20px yellow;
        transition-duration: 300ms;
    }
    .javascript>img{
        height: 29px;
    }
    .javascript>p{
        color: white;
        font-weight: 600;
    }
    .tailwind{
        border: 1.5px solid lightblue;
    }
    .tailwind>img{
        height: 28px;
    }
    .tailwind>p{
        color: white;
        font-weight: 600;
    }
    .tailwind:hover{
        transition-duration: 300ms;
        background-color: #9999993d;
        box-shadow: 0px 0px 20px lightblue;
    }
    .bootstrap{
        border: 1.5px solid #ad00b1;
    }
    .bootstrap:hover{
        background-color: #9999993d;
        box-shadow: 0px 0px 20px #ad00b1;
        transition-duration: 300ms;
    }
    .bootstrap>img{
        height: 28px;
    }
    .bootstrap>p{
        color: white;
        font-weight: 600;
    }
    .php{
        border: 1.5px solid #ff16f4;
    }
    .php:hover{
        transition-duration: 300ms;
        box-shadow: 0px 0px 20px #ff16f4;
        background-color: #9999993d;
    }
    .php>img{
        height: 28px;
    }
    .php>p{
        color: white;
        font-weight: 600;
    }
    .mysql{
        border: 1.5px solid lightskyblue;
    }
    .mysql:hover{
        transition-duration: 300ms;
        box-shadow: 0px 0px 20px lightskyblue;
        background-color: #9999993d;
    }
    .mysql>img{
        height: 28px;
    }
    .mysql>p{
        color: white;
        font-weight: 600;
    }
    .services{
        height: 450px;
        width: 100%;
        align-content: center;
    }
    .services_heading{
        color: #ff16f4;
        font-weight: 700;
        text-align: center;
        font-size: 34px;
    }
    .my_offer{
        height: 360px;
        display: flex;
        justify-content: space-evenly;
        align-items: center;
        flex-wrap: wrap;
    }
    .the_offers{
        height: 140px;
        width: 30vw;
        text-align: center;
        align-content: center;
        border-radius: 8px 8px 8px 8px;
    }
    .the_offers:hover{
        transition-duration: 300ms;
        box-shadow: 0px 0px 20px #ff16f4;
    }
    .the_offers>i{
        font-size: 20px;
        color: #ff16f4;
        text-align: center;
    }
    .the_offers>p{
        font-weight: 600;
        font-size: 18px;
        color: white;
        text-align: center;
    }
    .the_offers>div{
        font-size: 13px;
        color: white;
    }
    .projects{
        height: 700px;
        width: 100%;
        align-content: center;
    }
    .projects_heading{
        font-size: 34px;
        color: #ff16f4;
        font-weight: 700;
        text-align: center;
    }
    .projects_div{
        height: 530px;
        width: 100%;
        display: flex;
        justify-content: space-evenly;
        align-items: center;
    }
    .projects_div>div{
        height: 450px;
        width: 35vw;
        border: 2px solid #ff16f4;
        text-align: center;
        border-radius: 18px 18px 18px 18px;
    }
    .projects_div>div:hover{
        transition-duration: 300ms;
        box-shadow: 0px 0px 30px #ff16f4;
        background-color: #9999993d;
    }
    .project_name{
        font-size: 20px;
        text-align: center;
        font-weight: 700;
        color: #ff16f4;
    }
    .project_img{
        height: 200px;
        width: 100%;
        border-top-left-radius: inherit;
        border-top-right-radius: inherit;
        border-bottom: 2px solid #ff16f4;
    }
    .project_info{
        height: 60px;
        color: white;
        border: 1px solid black;
        text-align: center;
        align-content: center;
    }
    .project_stack{
        display: flex;
        justify-content: space-evenly;
        flex-wrap: wrap;
        color: white;
        margin-top: 4px;
    }
    .project_stack>p{
        width: 6vw;
        height: 30px;
        border: 1px solid #ff16f4;
        align-content: center;
        border-radius: 18px 18px 18px 18px;
        background-color: #ff16f4;
        font-size: 13px;
        box-shadow: 3px 3px 0px white;
        font-weight: 600;
    }
   
    .project_links{
        display: flex;
        justify-content: space-evenly;
        margin-top: 10px;
    }
    .github_repo{
        height: 30px;
        width: 8vw;
        transition-duration: 300ms;
        text-align: center;
        align-content: center;
        color: black;
        background-color: white;
        text-decoration: none;
        display: inline-block;
        border-radius: 8px 8px 8px 8px;
        border: 1px solid white;
        display: flex;
        align-items: center;
        justify-content: space-evenly;
        font-size: 13px;
        font-weight: 600;
    }
    .github_repo:hover{
        border: 1px solid #b0b0b0;
        background-color: #b0b0b0;
    }
    .demo{
        background-color: #ff16f4;
        color: black;
        display: inline-block;
        width: 10vw;
        height: 30px;
        text-decoration: none;
        text-align: center;
        align-content: center;
        border-radius: 8px 8px 8px 8px;
        font-weight: 600;
    }
    .demo:hover{
        transition-duration: 300ms;
        border: 1px solid purple;
        background-color: purple;
    }
    .certifications{
        height: 500px;
        width: 100%;
        align-content: center;
    }
    .certifications_heading{
        color: #ff16f4;
        font-weight: 700;
        font-size: 34px;
        text-align: center;
    }
    .certifications_div{
        height: 350px;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-evenly;
    }
    .certificates{
        height: 300px;
        width: 30vw;
        border-radius: 20px 20px 20px 20px;
        text-align: center;
        align-content: center;
    }
    .certificates:hover{
        transition-duration: 300ms;
        box-shadow: 0px 0px 25px #ff16f4;
    }
    .certificate_name{
        color: #ff16f4;
        font-weight: 600;
        font-size: 18px;
    }
    .platform{
        color: white;
        font-weight: 600;
        font-size: 16px;
    }
    .view_certificate{
        height: 80px;
        width: 100%;
        align-content: center;
    }
    
    .view_certificate>a{
        height: 35px;
        width: 10vw;
        border: 1px solid #ff16f4;
        background-color: #ff16f4;
        color: black;
        display: inline-block;
        align-content: center;
        border-radius: 10px 10px 10px 10px;
        text-decoration: none;
        font-weight: 600;
    }
    .view_certificate>a:hover{
        transition: 300ms;
        box-shadow: 0px 0px 10px #ff16f4;
    }
    .contacts{
        height: 800px;
        width: 100%;
        display: grid;
        place-content: center;
    }
    .contacts_heading{
        font-size: 34px;
        font-weight: 700;
        color: #ff16f4;
        text-align: center;
    }
    
    form{
        height: 600px;
        width: 50vw;
        border: 2px solid #ff16f4;
        display: grid;
        place-content: center;
        gap: 20px;
        border-radius: 20px 20px 20px 20px;
    }
    form>p{
        color: white;
        font-size: 28px;
        font-weight: 700;
        text-align: center;
    }
    .fullname,.email{
        height: 80px;
        width: 40vw;
        color: white;
        font-weight: 500;
    }
    .fullname>input,.email>input{
        height: 40px;
        width: 39vw;
        border-radius: 6px 6px 6px 6px;
        border: 1.5px solid white;
        background-color: transparent;
        margin-top: 10px;
        color: white;
        text-indent: 20px;
    }
    .fullname>input:focus,.email>input:focus{
        outline: 1.5px solid #ff16f4;
    }
    .message{
        height: 130px;
        width: 40vw;
        align-content: center;
        color: white;
    }
    .message>textarea{
        height: 85px;
        width: 39vw;
        text-indent: 20px;
        background-color: transparent;
        border-radius: 6px 6px 6px 6px;
        border: 1.5px solid white;
        color: white;
        margin-top: 10px;
    }
    .message>textarea:focus{
        outline: 1.5px solid #ff16f4;
    }
    .submit{
        height: 50px;
        font-size: 20px;
        font-weight: 600;
        border: 1px solid #ff16f4;
        background-color: #ff16f4;
        border-radius: 10px 10px 10px 10px;
        cursor: pointer;
    }
    .submit:hover{
        transition-duration: 300ms;
        background-color: #d100d9;
        border: 1px solid #d100d9;
    }
    footer{
        height: 300px;
        width: 100%;
        display: grid;
        place-content: center;
    }
    .footer_heading{
        color: #ff16f4;
        font-size: 30px;
        font-weight: 700;
        text-align: center;
    }
    footer>p{
        color: white;
        text-align: center;
        font-size: 18px;
        margin-top: 20px;
    }
    .footer_links{
        margin-top: 20px;
        display: flex;
        justify-content: space-evenly;
        align-items: center;
    }
    .github_footer{
        color: white;
        font-size: 34px;
        text-decoration: none;
    }
    .x_footer{
        color: white;
        font-size: 34px;
        text-decoration: none;
    }
    .linkedin_footer{
        font-size: 34px;
        color: #5676ff;
        text-decoration: none;
    }
    .email_footer{
        color: orangered;
        text-decoration: none;
        font-size: 34px;
    }
}
@media screen and (min-width:1098px) and (max-width:1148px){
    header{
        height: 80px;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    nav{
        height: 70px;
        width: 100%;
        display: flex;
        justify-content: space-evenly;
        align-items: center;
        backdrop-filter: blur(30px);
        position: fixed;
    }
    .sidenav{
        display: none;
    }
    .sidebar{
        display: none;
    }
    .logo{
        font-size: 20px;
        font-weight: 700;
        color: white;
    }
    .nav_links{
        height: 100%;
        width: 50vw;
        display: flex;
        align-items: center;
        justify-content: space-evenly;
    }
    .nav_links>a{
        height: 35px;
        width: 8vw;
        display: inline-block;
        text-decoration: none;
        text-align: center;
        align-content: center;
        font-weight: 600;
        color: white;
        border: 2px solid #ff16f4;
        border-radius: 18px 18px 18px 18px;
    }
    .nav_links>a:hover{
        background-color: #ff16f4;
        color: black;
        font-weight: 600;
        box-shadow: 0px 0px 15px #ff16f4;
        transition-duration: 300ms;
    }
    .Resume{
        height: 35px;
        width: 8vw;
        border-radius: 18px 18px 18px 18px;
        display: inline-block;
        text-align: center;
        align-content: center;
        text-decoration: none;
        border: 1px solid #ff16f4;
        background-color: #ff16f4;
        color: black;
        font-weight: 600;
    }
    .Resume:hover{
        transition-duration: 150ms;
        box-shadow: 0px 0px 18px #ff16f4;
    }
    section{
        height: 3600px;
        width: 100%;
        border: 2px solid white;
        border-top: none;
        border-left: none;
        border-right: none;
    }
    .About{
        height: 600px;
        width: 100%;
        display: flex;
        justify-content: space-evenly;
        align-items: center;
    }
    .About_img{
        height: 500px;
        width: 30vw;
    }
    .About_img>img{
        height: 100%;
        width: 100%;
        border-radius: 100px 100px 100px 100px;
    }
    .About_info{
        height: 400px;
        width: 40vw;
    }
    .name{
        font-size: 28px;
        font-weight: 700;
        color: white;
    }
    .job{
        font-size: 28px;
        font-weight: 700;
        color: #ff16f4;
    }
    .info{
        height: 130px;
        width: 100%;
    }
    .info>p{
        color: white;
        font-size: 18px;
        font-weight: 500;
    }
    .profiles{
        text-align: center;
    }
    .github_link{
        font-size: 28px;
        color: white;
    }
    .linkedin_link{
        text-decoration: none;
        font-size: 28px;
        color: #5676ff;
    }
    .x_link{
        text-decoration: none;
        font-size: 28px;
        color: white;
    }
    .download_resume{
        height: 100px;
        width: 100%;
        align-content: center;
        text-align: center;
    }
    .download_resume>a{
        height: 60px;
        width: 16vw;
        display: inline-block;
        align-content: center;
        text-align: center;
        background-color: #d100d9;
        border-radius: 10px 10px 10px 10px;
        text-decoration: none;
        color: black;
        font-weight: 600;
    }
    .download_resume>a:hover{
        transition-duration: 300ms;
        background-color: #ad00b1;
        box-shadow: 0px 0px 18px #ad00b1;
    }
    .tech_stack{
        height: 350px;
        width: 100%;
        align-content: center;
    }
    .tech_stack_heading{
        color: #ff16f4;
        font-weight: 700;
        text-align: center;
        font-size: 35px;
    }
    .stack_div{
        height: 200px;
        width: 100%;
        text-align: center;
        align-content: center;
    }
    .html,.css,.javascript,.tailwind,.bootstrap,.php,.mysql{
        height: 100px;
        width: 10vw;
        background-color: transparent;
        border-radius: 8px 8px 8px 8px;
    }
    .html{
        border: 1.5px solid orange;
    }
    .html:hover{
        box-shadow: 0px 0px 20px orange;
        transition-duration: 300ms;
        background-color: #9999993d;
    }
    .html>img{
        height: 29px;
    }
    .html>p{
        color: white;
        font-weight: 600;
    }
    .css{
        border: 1.5px solid blue;
    }
    .css:hover{
        background-color: #9999993d;
        box-shadow: 0px 0px 20px blue;
        transition-duration: 300ms;
    }
    .css>img{
        height: 27px;
    }
    .css>p{
        color: white;
        font-weight: 600;
    }
    .javascript{
        border: 1.5px solid yellow;
    }
    .javascript:hover{
        background-color: #9999993d;
        box-shadow: 0px 0px 20px yellow;
        transition-duration: 300ms;
    }
    .javascript>img{
        height: 29px;
    }
    .javascript>p{
        color: white;
        font-weight: 600;
    }
    .tailwind{
        border: 1.5px solid lightblue;
    }
    .tailwind>img{
        height: 28px;
    }
    .tailwind>p{
        color: white;
        font-weight: 600;
    }
    .tailwind:hover{
        transition-duration: 300ms;
        background-color: #9999993d;
        box-shadow: 0px 0px 20px lightblue;
    }
    .bootstrap{
        border: 1.5px solid #ad00b1;
    }
    .bootstrap:hover{
        background-color: #9999993d;
        box-shadow: 0px 0px 20px #ad00b1;
        transition-duration: 300ms;
    }
    .bootstrap>img{
        height: 28px;
    }
    .bootstrap>p{
        color: white;
        font-weight: 600;
    }
    .php{
        border: 1.5px solid #ff16f4;
    }
    .php:hover{
        transition-duration: 300ms;
        box-shadow: 0px 0px 20px #ff16f4;
        background-color: #9999993d;
    }
    .php>img{
        height: 28px;
    }
    .php>p{
        color: white;
        font-weight: 600;
    }
    .mysql{
        border: 1.5px solid lightskyblue;
    }
    .mysql:hover{
        transition-duration: 300ms;
        box-shadow: 0px 0px 20px lightskyblue;
        background-color: #9999993d;
    }
    .mysql>img{
        height: 28px;
    }
    .mysql>p{
        color: white;
        font-weight: 600;
    }
    .services{
        height: 450px;
        width: 100%;
        align-content: center;
    }
    .services_heading{
        color: #ff16f4;
        font-weight: 700;
        text-align: center;
        font-size: 34px;
    }
    .my_offer{
        height: 360px;
        display: flex;
        justify-content: space-evenly;
        align-items: center;
        flex-wrap: wrap;
    }
    .the_offers{
        height: 140px;
        width: 30vw;
        text-align: center;
        align-content: center;
        border-radius: 8px 8px 8px 8px;
    }
    .the_offers:hover{
        transition-duration: 300ms;
        box-shadow: 0px 0px 20px #ff16f4;
    }
    .the_offers>i{
        font-size: 20px;
        color: #ff16f4;
        text-align: center;
    }
    .the_offers>p{
        font-weight: 600;
        font-size: 18px;
        color: white;
        text-align: center;
    }
    .the_offers>div{
        font-size: 13px;
        color: white;
    }
    .projects{
        height: 700px;
        width: 100%;
        align-content: center;
    }
    .projects_heading{
        font-size: 34px;
        color: #ff16f4;
        font-weight: 700;
        text-align: center;
    }
    .projects_div{
        height: 530px;
        width: 100%;
        display: flex;
        justify-content: space-evenly;
        align-items: center;
    }
    .projects_div>div{
        height: 450px;
        width: 35vw;
        border: 2px solid #ff16f4;
        text-align: center;
        border-radius: 18px 18px 18px 18px;
    }
    .projects_div>div:hover{
        transition-duration: 300ms;
        box-shadow: 0px 0px 30px #ff16f4;
        background-color: #9999993d;
    }
    .project_name{
        font-size: 20px;
        text-align: center;
        font-weight: 700;
        color: #ff16f4;
    }
    .project_img{
        height: 200px;
        width: 100%;
        border-top-left-radius: inherit;
        border-top-right-radius: inherit;
        border-bottom: 2px solid #ff16f4;
    }
    .project_info{
        height: 60px;
        color: white;
        border: 1px solid black;
        text-align: center;
        align-content: center;
    }
    .project_stack{
        display: flex;
        justify-content: space-evenly;
        flex-wrap: wrap;
        color: white;
        margin-top: 4px;
    }
    .project_stack>p{
        width: 6vw;
        height: 30px;
        border: 1px solid #ff16f4;
        align-content: center;
        border-radius: 18px 18px 18px 18px;
        background-color: #ff16f4;
        font-size: 13px;
        box-shadow: 3px 3px 0px white;
        font-weight: 600;
    }
   
    .project_links{
        display: flex;
        justify-content: space-evenly;
        margin-top: 10px;
    }
    .github_repo{
        height: 30px;
        width: 8vw;
        transition-duration: 300ms;
        text-align: center;
        align-content: center;
        color: black;
        background-color: white;
        text-decoration: none;
        display: inline-block;
        border-radius: 8px 8px 8px 8px;
        border: 1px solid white;
        display: flex;
        align-items: center;
        justify-content: space-evenly;
        font-size: 13px;
        font-weight: 600;
    }
    .github_repo:hover{
        border: 1px solid #b0b0b0;
        background-color: #b0b0b0;
    }
    .demo{
        background-color: #ff16f4;
        color: black;
        display: inline-block;
        width: 10vw;
        height: 30px;
        text-decoration: none;
        text-align: center;
        align-content: center;
        border-radius: 8px 8px 8px 8px;
        font-weight: 600;
    }
    .demo:hover{
        transition-duration: 300ms;
        border: 1px solid purple;
        background-color: purple;
    }
    .certifications{
        height: 500px;
        width: 100%;
        align-content: center;
    }
    .certifications_heading{
        color: #ff16f4;
        font-weight: 700;
        font-size: 34px;
        text-align: center;
    }
    .certifications_div{
        height: 350px;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-evenly;
    }
    .certificates{
        height: 300px;
        width: 30vw;
        border-radius: 20px 20px 20px 20px;
        text-align: center;
        align-content: center;
    }
    .certificates:hover{
        transition-duration: 300ms;
        box-shadow: 0px 0px 25px #ff16f4;
    }
    .certificate_name{
        color: #ff16f4;
        font-weight: 600;
        font-size: 18px;
    }
    .platform{
        color: white;
        font-weight: 600;
        font-size: 16px;
    }
    .view_certificate{
        height: 80px;
        width: 100%;
        align-content: center;
    }
    
    .view_certificate>a{
        height: 35px;
        width: 10vw;
        border: 1px solid #ff16f4;
        background-color: #ff16f4;
        color: black;
        display: inline-block;
        align-content: center;
        border-radius: 10px 10px 10px 10px;
        text-decoration: none;
        font-weight: 600;
    }
    .view_certificate>a:hover{
        transition: 300ms;
        box-shadow: 0px 0px 10px #ff16f4;
    }
    .contacts{
        height: 800px;
        width: 100%;
        display: grid;
        place-content: center;
    }
    .contacts_heading{
        font-size: 34px;
        font-weight: 700;
        color: #ff16f4;
        text-align: center;
    }
    
    form{
        height: 600px;
        width: 50vw;
        border: 2px solid #ff16f4;
        display: grid;
        place-content: center;
        gap: 20px;
        border-radius: 20px 20px 20px 20px;
    }
    form>p{
        color: white;
        font-size: 28px;
        font-weight: 700;
        text-align: center;
    }
    .fullname,.email{
        height: 80px;
        width: 40vw;
        color: white;
        font-weight: 500;
    }
    .fullname>input,.email>input{
        height: 40px;
        width: 39vw;
        border-radius: 6px 6px 6px 6px;
        border: 1.5px solid white;
        background-color: transparent;
        margin-top: 10px;
        color: white;
        text-indent: 20px;
    }
    .fullname>input:focus,.email>input:focus{
        outline: 1.5px solid #ff16f4;
    }
    .message{
        height: 130px;
        width: 40vw;
        align-content: center;
        color: white;
    }
    .message>textarea{
        height: 85px;
        width: 39vw;
        text-indent: 20px;
        background-color: transparent;
        border-radius: 6px 6px 6px 6px;
        border: 1.5px solid white;
        color: white;
        margin-top: 10px;
    }
    .message>textarea:focus{
        outline: 1.5px solid #ff16f4;
    }
    .submit{
        height: 50px;
        font-size: 20px;
        font-weight: 600;
        border: 1px solid #ff16f4;
        background-color: #ff16f4;
        border-radius: 10px 10px 10px 10px;
        cursor: pointer;
    }
    .submit:hover{
        transition-duration: 300ms;
        background-color: #d100d9;
        border: 1px solid #d100d9;
    }
    footer{
        height: 300px;
        width: 100%;
        display: grid;
        place-content: center;
    }
    .footer_heading{
        color: #ff16f4;
        font-size: 30px;
        font-weight: 700;
        text-align: center;
    }
    footer>p{
        color: white;
        text-align: center;
        font-size: 18px;
        margin-top: 20px;
    }
    .footer_links{
        margin-top: 20px;
        display: flex;
        justify-content: space-evenly;
        align-items: center;
    }
    .github_footer{
        color: white;
        font-size: 34px;
        text-decoration: none;
    }
    .x_footer{
        color: white;
        font-size: 34px;
        text-decoration: none;
    }
    .linkedin_footer{
        font-size: 34px;
        color: #5676ff;
        text-decoration: none;
    }
    .email_footer{
        color: orangered;
        text-decoration: none;
        font-size: 34px;
    }
}
@media screen and (min-width:1149px) and (max-width:1199px){
    header{
        height: 80px;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    nav{
        height: 70px;
        width: 100%;
        display: flex;
        justify-content: space-evenly;
        align-items: center;
        backdrop-filter: blur(30px);
        position: fixed;
    }
    .sidenav{
        display: none;
    }
    .sidebar{
        display: none;
    }
    .logo{
        font-size: 20px;
        font-weight: 700;
        color: white;
    }
    .nav_links{
        height: 100%;
        width: 50vw;
        display: flex;
        align-items: center;
        justify-content: space-evenly;
    }
    .nav_links>a{
        height: 35px;
        width: 8vw;
        display: inline-block;
        text-decoration: none;
        text-align: center;
        align-content: center;
        font-weight: 600;
        color: white;
        border: 2px solid #ff16f4;
        border-radius: 18px 18px 18px 18px;
    }
    .nav_links>a:hover{
        background-color: #ff16f4;
        color: black;
        font-weight: 600;
        box-shadow: 0px 0px 15px #ff16f4;
        transition-duration: 300ms;
    }
    .Resume{
        height: 35px;
        width: 8vw;
        border-radius: 18px 18px 18px 18px;
        display: inline-block;
        text-align: center;
        align-content: center;
        text-decoration: none;
        border: 1px solid #ff16f4;
        background-color: #ff16f4;
        color: black;
        font-weight: 600;
    }
    .Resume:hover{
        transition-duration: 150ms;
        box-shadow: 0px 0px 18px #ff16f4;
    }
    section{
        height: 3600px;
        width: 100%;
        border: 2px solid white;
        border-top: none;
        border-left: none;
        border-right: none;
    }
    .About{
        height: 600px;
        width: 100%;
        display: flex;
        justify-content: space-evenly;
        align-items: center;
    }
    .About_img{
        height: 500px;
        width: 30vw;
    }
    .About_img>img{
        height: 100%;
        width: 100%;
        border-radius: 100px 100px 100px 100px;
    }
    .About_info{
        height: 400px;
        width: 40vw;
    }
    .name{
        font-size: 28px;
        font-weight: 700;
        color: white;
    }
    .job{
        font-size: 28px;
        font-weight: 700;
        color: #ff16f4;
    }
    .info{
        height: 130px;
        width: 100%;
    }
    .info>p{
        color: white;
        font-size: 18px;
        font-weight: 500;
    }
    .profiles{
        text-align: center;
    }
    .github_link{
        font-size: 28px;
        color: white;
    }
    .linkedin_link{
        text-decoration: none;
        font-size: 28px;
        color: #5676ff;
    }
    .x_link{
        text-decoration: none;
        font-size: 28px;
        color: white;
    }
    .download_resume{
        height: 100px;
        width: 100%;
        align-content: center;
        text-align: center;
    }
    .download_resume>a{
        height: 60px;
        width: 16vw;
        display: inline-block;
        align-content: center;
        text-align: center;
        background-color: #d100d9;
        border-radius: 10px 10px 10px 10px;
        text-decoration: none;
        color: black;
        font-weight: 600;
    }
    .download_resume>a:hover{
        transition-duration: 300ms;
        background-color: #ad00b1;
        box-shadow: 0px 0px 18px #ad00b1;
    }
    .tech_stack{
        height: 350px;
        width: 100%;
        align-content: center;
    }
    .tech_stack_heading{
        color: #ff16f4;
        font-weight: 700;
        text-align: center;
        font-size: 35px;
    }
    .stack_div{
        height: 200px;
        width: 100%;
        text-align: center;
        align-content: center;
    }
    .html,.css,.javascript,.tailwind,.bootstrap,.php,.mysql{
        height: 100px;
        width: 10vw;
        background-color: transparent;
        border-radius: 8px 8px 8px 8px;
    }
    .html{
        border: 1.5px solid orange;
    }
    .html:hover{
        box-shadow: 0px 0px 20px orange;
        transition-duration: 300ms;
        background-color: #9999993d;
    }
    .html>img{
        height: 29px;
    }
    .html>p{
        color: white;
        font-weight: 600;
    }
    .css{
        border: 1.5px solid blue;
    }
    .css:hover{
        background-color: #9999993d;
        box-shadow: 0px 0px 20px blue;
        transition-duration: 300ms;
    }
    .css>img{
        height: 27px;
    }
    .css>p{
        color: white;
        font-weight: 600;
    }
    .javascript{
        border: 1.5px solid yellow;
    }
    .javascript:hover{
        background-color: #9999993d;
        box-shadow: 0px 0px 20px yellow;
        transition-duration: 300ms;
    }
    .javascript>img{
        height: 29px;
    }
    .javascript>p{
        color: white;
        font-weight: 600;
    }
    .tailwind{
        border: 1.5px solid lightblue;
    }
    .tailwind>img{
        height: 28px;
    }
    .tailwind>p{
        color: white;
        font-weight: 600;
    }
    .tailwind:hover{
        transition-duration: 300ms;
        background-color: #9999993d;
        box-shadow: 0px 0px 20px lightblue;
    }
    .bootstrap{
        border: 1.5px solid #ad00b1;
    }
    .bootstrap:hover{
        background-color: #9999993d;
        box-shadow: 0px 0px 20px #ad00b1;
        transition-duration: 300ms;
    }
    .bootstrap>img{
        height: 28px;
    }
    .bootstrap>p{
        color: white;
        font-weight: 600;
    }
    .php{
        border: 1.5px solid #ff16f4;
    }
    .php:hover{
        transition-duration: 300ms;
        box-shadow: 0px 0px 20px #ff16f4;
        background-color: #9999993d;
    }
    .php>img{
        height: 28px;
    }
    .php>p{
        color: white;
        font-weight: 600;
    }
    .mysql{
        border: 1.5px solid lightskyblue;
    }
    .mysql:hover{
        transition-duration: 300ms;
        box-shadow: 0px 0px 20px lightskyblue;
        background-color: #9999993d;
    }
    .mysql>img{
        height: 28px;
    }
    .mysql>p{
        color: white;
        font-weight: 600;
    }
    .services{
        height: 450px;
        width: 100%;
        align-content: center;
    }
    .services_heading{
        color: #ff16f4;
        font-weight: 700;
        text-align: center;
        font-size: 34px;
    }
    .my_offer{
        height: 360px;
        display: flex;
        justify-content: space-evenly;
        align-items: center;
        flex-wrap: wrap;
    }
    .the_offers{
        height: 140px;
        width: 30vw;
        text-align: center;
        align-content: center;
        border-radius: 8px 8px 8px 8px;
    }
    .the_offers:hover{
        transition-duration: 300ms;
        box-shadow: 0px 0px 20px #ff16f4;
    }
    .the_offers>i{
        font-size: 20px;
        color: #ff16f4;
        text-align: center;
    }
    .the_offers>p{
        font-weight: 600;
        font-size: 18px;
        color: white;
        text-align: center;
    }
    .the_offers>div{
        font-size: 13px;
        color: white;
    }
    .projects{
        height: 700px;
        width: 100%;
        align-content: center;
    }
    .projects_heading{
        font-size: 34px;
        color: #ff16f4;
        font-weight: 700;
        text-align: center;
    }
    .projects_div{
        height: 530px;
        width: 100%;
        display: flex;
        justify-content: space-evenly;
        align-items: center;
    }
    .projects_div>div{
        height: 450px;
        width: 35vw;
        border: 2px solid #ff16f4;
        text-align: center;
        border-radius: 18px 18px 18px 18px;
    }
    .projects_div>div:hover{
        transition-duration: 300ms;
        box-shadow: 0px 0px 30px #ff16f4;
        background-color: #9999993d;
    }
    .project_name{
        font-size: 20px;
        text-align: center;
        font-weight: 700;
        color: #ff16f4;
    }
    .project_img{
        height: 200px;
        width: 100%;
        border-top-left-radius: inherit;
        border-top-right-radius: inherit;
        border-bottom: 2px solid #ff16f4;
    }
    .project_info{
        height: 60px;
        color: white;
        border: 1px solid black;
        text-align: center;
        align-content: center;
    }
    .project_stack{
        display: flex;
        justify-content: space-evenly;
        flex-wrap: wrap;
        color: white;
        margin-top: 4px;
    }
    .project_stack>p{
        width: 6vw;
        height: 30px;
        border: 1px solid #ff16f4;
        align-content: center;
        border-radius: 18px 18px 18px 18px;
        background-color: #ff16f4;
        font-size: 13px;
        box-shadow: 3px 3px 0px white;
        font-weight: 600;
    }
   
    .project_links{
        display: flex;
        justify-content: space-evenly;
        margin-top: 10px;
    }
    .github_repo{
        height: 30px;
        width: 8vw;
        transition-duration: 300ms;
        text-align: center;
        align-content: center;
        color: black;
        background-color: white;
        text-decoration: none;
        display: inline-block;
        border-radius: 8px 8px 8px 8px;
        border: 1px solid white;
        display: flex;
        align-items: center;
        justify-content: space-evenly;
        font-size: 13px;
        font-weight: 600;
    }
    .github_repo:hover{
        border: 1px solid #b0b0b0;
        background-color: #b0b0b0;
    }
    .demo{
        background-color: #ff16f4;
        color: black;
        display: inline-block;
        width: 10vw;
        height: 30px;
        text-decoration: none;
        text-align: center;
        align-content: center;
        border-radius: 8px 8px 8px 8px;
        font-weight: 600;
    }
    .demo:hover{
        transition-duration: 300ms;
        border: 1px solid purple;
        background-color: purple;
    }
    .certifications{
        height: 500px;
        width: 100%;
        align-content: center;
    }
    .certifications_heading{
        color: #ff16f4;
        font-weight: 700;
        font-size: 34px;
        text-align: center;
    }
    .certifications_div{
        height: 350px;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-evenly;
    }
    .certificates{
        height: 300px;
        width: 30vw;
        border-radius: 20px 20px 20px 20px;
        text-align: center;
        align-content: center;
    }
    .certificates:hover{
        transition-duration: 300ms;
        box-shadow: 0px 0px 25px #ff16f4;
    }
    .certificate_name{
        color: #ff16f4;
        font-weight: 600;
        font-size: 18px;
    }
    .platform{
        color: white;
        font-weight: 600;
        font-size: 16px;
    }
    .view_certificate{
        height: 80px;
        width: 100%;
        align-content: center;
    }
    
    .view_certificate>a{
        height: 35px;
        width: 10vw;
        border: 1px solid #ff16f4;
        background-color: #ff16f4;
        color: black;
        display: inline-block;
        align-content: center;
        border-radius: 10px 10px 10px 10px;
        text-decoration: none;
        font-weight: 600;
    }
    .view_certificate>a:hover{
        transition: 300ms;
        box-shadow: 0px 0px 10px #ff16f4;
    }
    .contacts{
        height: 800px;
        width: 100%;
        display: grid;
        place-content: center;
    }
    .contacts_heading{
        font-size: 34px;
        font-weight: 700;
        color: #ff16f4;
        text-align: center;
    }
    
    form{
        height: 600px;
        width: 50vw;
        border: 2px solid #ff16f4;
        display: grid;
        place-content: center;
        gap: 20px;
        border-radius: 20px 20px 20px 20px;
    }
    form>p{
        color: white;
        font-size: 28px;
        font-weight: 700;
        text-align: center;
    }
    .fullname,.email{
        height: 80px;
        width: 40vw;
        color: white;
        font-weight: 500;
    }
    .fullname>input,.email>input{
        height: 40px;
        width: 39vw;
        border-radius: 6px 6px 6px 6px;
        border: 1.5px solid white;
        background-color: transparent;
        margin-top: 10px;
        color: white;
        text-indent: 20px;
    }
    .fullname>input:focus,.email>input:focus{
        outline: 1.5px solid #ff16f4;
    }
    .message{
        height: 130px;
        width: 40vw;
        align-content: center;
        color: white;
    }
    .message>textarea{
        height: 85px;
        width: 39vw;
        text-indent: 20px;
        background-color: transparent;
        border-radius: 6px 6px 6px 6px;
        border: 1.5px solid white;
        color: white;
        margin-top: 10px;
    }
    .message>textarea:focus{
        outline: 1.5px solid #ff16f4;
    }
    .submit{
        height: 50px;
        font-size: 20px;
        font-weight: 600;
        border: 1px solid #ff16f4;
        background-color: #ff16f4;
        border-radius: 10px 10px 10px 10px;
        cursor: pointer;
    }
    .submit:hover{
        transition-duration: 300ms;
        background-color: #d100d9;
        border: 1px solid #d100d9;
    }
    footer{
        height: 300px;
        width: 100%;
        display: grid;
        place-content: center;
    }
    .footer_heading{
        color: #ff16f4;
        font-size: 30px;
        font-weight: 700;
        text-align: center;
    }
    footer>p{
        color: white;
        text-align: center;
        font-size: 18px;
        margin-top: 20px;
    }
    .footer_links{
        margin-top: 20px;
        display: flex;
        justify-content: space-evenly;
        align-items: center;
    }
    .github_footer{
        color: white;
        font-size: 34px;
        text-decoration: none;
    }
    .x_footer{
        color: white;
        font-size: 34px;
        text-decoration: none;
    }
    .linkedin_footer{
        font-size: 34px;
        color: #5676ff;
        text-decoration: none;
    }
    .email_footer{
        color: orangered;
        text-decoration: none;
        font-size: 34px;
    }
}
@media screen and (min-width:1200px){
    header{
        height: 80px;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    nav{
        height: 70px;
        width: 100%;
        display: flex;
        justify-content: space-evenly;
        align-items: center;
        backdrop-filter: blur(30px);
        position: fixed;
    }
    .sidenav{
        display: none;
    }
    .sidebar{
        display: none;
    }
    .logo{
        font-size: 20px;
        font-weight: 700;
        color: white;
    }
    .nav_links{
        height: 100%;
        width: 50vw;
        display: flex;
        align-items: center;
        justify-content: space-evenly;
    }
    .nav_links>a{
        height: 35px;
        width: 8vw;
        display: inline-block;
        text-decoration: none;
        text-align: center;
        align-content: center;
        font-weight: 600;
        color: white;
        border: 2px solid #ff16f4;
        border-radius: 18px 18px 18px 18px;
    }
    .nav_links>a:hover{
        background-color: #ff16f4;
        color: black;
        font-weight: 600;
        box-shadow: 0px 0px 15px #ff16f4;
        transition-duration: 300ms;
    }
    .Resume{
        height: 35px;
        width: 8vw;
        border-radius: 18px 18px 18px 18px;
        display: inline-block;
        text-align: center;
        align-content: center;
        text-decoration: none;
        border: 1px solid #ff16f4;
        background-color: #ff16f4;
        color: black;
        font-weight: 600;
    }
    .Resume:hover{
        transition-duration: 150ms;
        box-shadow: 0px 0px 18px #ff16f4;
    }
    section{
        height: 3600px;
        width: 100%;
        border: 2px solid white;
        border-top: none;
        border-left: none;
        border-right: none;
    }
    .About{
        height: 600px;
        width: 100%;
        display: flex;
        justify-content: space-evenly;
        align-items: center;
    }
    .About_img{
        height: 500px;
        width: 30vw;
    }
    .About_img>img{
        height: 100%;
        width: 100%;
        border-radius: 100px 100px 100px 100px;
    }
    .About_info{
        height: 400px;
        width: 40vw;
    }
    .name{
        font-size: 28px;
        font-weight: 700;
        color: white;
    }
    .job{
        font-size: 28px;
        font-weight: 700;
        color: #ff16f4;
    }
    .info{
        height: 130px;
        width: 100%;
    }
    .info>p{
        color: white;
        font-size: 18px;
        font-weight: 500;
    }
    .profiles{
        text-align: center;
    }
    .github_link{
        font-size: 28px;
        color: white;
    }
    .linkedin_link{
        text-decoration: none;
        font-size: 28px;
        color: #5676ff;
    }
    .x_link{
        text-decoration: none;
        font-size: 28px;
        color: white;
    }
    .download_resume{
        height: 100px;
        width: 100%;
        align-content: center;
        text-align: center;
    }
    .download_resume>a{
        height: 60px;
        width: 16vw;
        display: inline-block;
        align-content: center;
        text-align: center;
        background-color: #d100d9;
        border-radius: 10px 10px 10px 10px;
        text-decoration: none;
        color: black;
        font-weight: 600;
    }
    .download_resume>a:hover{
        transition-duration: 300ms;
        background-color: #ad00b1;
        box-shadow: 0px 0px 18px #ad00b1;
    }
    .tech_stack{
        height: 350px;
        width: 100%;
        align-content: center;
    }
    .tech_stack_heading{
        color: #ff16f4;
        font-weight: 700;
        text-align: center;
        font-size: 35px;
    }
    .stack_div{
        height: 200px;
        width: 100%;
        text-align: center;
        align-content: center;
    }
    .html,.css,.javascript,.tailwind,.bootstrap,.php,.mysql{
        height: 100px;
        width: 10vw;
        background-color: transparent;
        border-radius: 8px 8px 8px 8px;
    }
    .html{
        border: 1.5px solid orange;
    }
    .html:hover{
        box-shadow: 0px 0px 20px orange;
        transition-duration: 300ms;
        background-color: #9999993d;
    }
    .html>img{
        height: 29px;
    }
    .html>p{
        color: white;
        font-weight: 600;
    }
    .css{
        border: 1.5px solid blue;
    }
    .css:hover{
        background-color: #9999993d;
        box-shadow: 0px 0px 20px blue;
        transition-duration: 300ms;
    }
    .css>img{
        height: 27px;
    }
    .css>p{
        color: white;
        font-weight: 600;
    }
    .javascript{
        border: 1.5px solid yellow;
    }
    .javascript:hover{
        background-color: #9999993d;
        box-shadow: 0px 0px 20px yellow;
        transition-duration: 300ms;
    }
    .javascript>img{
        height: 29px;
    }
    .javascript>p{
        color: white;
        font-weight: 600;
    }
    .tailwind{
        border: 1.5px solid lightblue;
    }
    .tailwind>img{
        height: 28px;
    }
    .tailwind>p{
        color: white;
        font-weight: 600;
    }
    .tailwind:hover{
        transition-duration: 300ms;
        background-color: #9999993d;
        box-shadow: 0px 0px 20px lightblue;
    }
    .bootstrap{
        border: 1.5px solid #ad00b1;
    }
    .bootstrap:hover{
        background-color: #9999993d;
        box-shadow: 0px 0px 20px #ad00b1;
        transition-duration: 300ms;
    }
    .bootstrap>img{
        height: 28px;
    }
    .bootstrap>p{
        color: white;
        font-weight: 600;
    }
    .php{
        border: 1.5px solid #ff16f4;
    }
    .php:hover{
        transition-duration: 300ms;
        box-shadow: 0px 0px 20px #ff16f4;
        background-color: #9999993d;
    }
    .php>img{
        height: 28px;
    }
    .php>p{
        color: white;
        font-weight: 600;
    }
    .mysql{
        border: 1.5px solid lightskyblue;
    }
    .mysql:hover{
        transition-duration: 300ms;
        box-shadow: 0px 0px 20px lightskyblue;
        background-color: #9999993d;
    }
    .mysql>img{
        height: 28px;
    }
    .mysql>p{
        color: white;
        font-weight: 600;
    }
    .services{
        height: 450px;
        width: 100%;
        align-content: center;
    }
    .services_heading{
        color: #ff16f4;
        font-weight: 700;
        text-align: center;
        font-size: 34px;
    }
    .my_offer{
        height: 360px;
        display: flex;
        justify-content: space-evenly;
        align-items: center;
        flex-wrap: wrap;
    }
    .the_offers{
        height: 140px;
        width: 30vw;
        text-align: center;
        align-content: center;
        border-radius: 8px 8px 8px 8px;
    }
    .the_offers:hover{
        transition-duration: 300ms;
        box-shadow: 0px 0px 20px #ff16f4;
    }
    .the_offers>i{
        font-size: 20px;
        color: #ff16f4;
        text-align: center;
    }
    .the_offers>p{
        font-weight: 600;
        font-size: 18px;
        color: white;
        text-align: center;
    }
    .the_offers>div{
        font-size: 13px;
        color: white;
    }
    .projects{
        height: 700px;
        width: 100%;
        align-content: center;
    }
    .projects_heading{
        font-size: 34px;
        color: #ff16f4;
        font-weight: 700;
        text-align: center;
    }
    .projects_div{
        height: 530px;
        width: 100%;
        display: flex;
        justify-content: space-evenly;
        align-items: center;
    }
    .projects_div>div{
        height: 450px;
        width: 35vw;
        border: 2px solid #ff16f4;
        text-align: center;
        border-radius: 18px 18px 18px 18px;
    }
    .projects_div>div:hover{
        transition-duration: 300ms;
        box-shadow: 0px 0px 30px #ff16f4;
        background-color: #9999993d;
    }
    .project_name{
        font-size: 20px;
        text-align: center;
        font-weight: 700;
        color: #ff16f4;
    }
    .project_img{
        height: 200px;
        width: 100%;
        border-top-left-radius: inherit;
        border-top-right-radius: inherit;
        border-bottom: 2px solid #ff16f4;
    }
    .project_info{
        height: 60px;
        color: white;
        border: 1px solid black;
        text-align: center;
        align-content: center;
    }
    .project_stack{
        display: flex;
        justify-content: space-evenly;
        flex-wrap: wrap;
        color: white;
        margin-top: 4px;
    }
    .project_stack>p{
        width: 6vw;
        height: 30px;
        border: 1px solid #ff16f4;
        align-content: center;
        border-radius: 18px 18px 18px 18px;
        background-color: #ff16f4;
        font-size: 13px;
        box-shadow: 3px 3px 0px white;
        font-weight: 600;
    }
   
    .project_links{
        display: flex;
        justify-content: space-evenly;
        margin-top: 10px;
    }
    .github_repo{
        height: 30px;
        width: 8vw;
        transition-duration: 300ms;
        text-align: center;
        align-content: center;
        color: black;
        background-color: white;
        text-decoration: none;
        display: inline-block;
        border-radius: 8px 8px 8px 8px;
        border: 1px solid white;
        display: flex;
        align-items: center;
        justify-content: space-evenly;
        font-size: 13px;
        font-weight: 600;
    }
    .github_repo:hover{
        border: 1px solid #b0b0b0;
        background-color: #b0b0b0;
    }
    .demo{
        background-color: #ff16f4;
        color: black;
        display: inline-block;
        width: 10vw;
        height: 30px;
        text-decoration: none;
        text-align: center;
        align-content: center;
        border-radius: 8px 8px 8px 8px;
        font-weight: 600;
    }
    .demo:hover{
        transition-duration: 300ms;
        border: 1px solid purple;
        background-color: purple;
    }
    .certifications{
        height: 500px;
        width: 100%;
        align-content: center;
    }
    .certifications_heading{
        color: #ff16f4;
        font-weight: 700;
        font-size: 34px;
        text-align: center;
    }
    .certifications_div{
        height: 350px;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-evenly;
    }
    .certificates{
        height: 300px;
        width: 30vw;
        border-radius: 20px 20px 20px 20px;
        text-align: center;
        align-content: center;
    }
    .certificates:hover{
        transition-duration: 300ms;
        box-shadow: 0px 0px 25px #ff16f4;
    }
    .certificate_name{
        color: #ff16f4;
        font-weight: 600;
        font-size: 18px;
    }
    .platform{
        color: white;
        font-weight: 600;
        font-size: 16px;
    }
    .view_certificate{
        height: 80px;
        width: 100%;
        align-content: center;
    }
    
    .view_certificate>a{
        height: 35px;
        width: 10vw;
        border: 1px solid #ff16f4;
        background-color: #ff16f4;
        color: black;
        display: inline-block;
        align-content: center;
        border-radius: 10px 10px 10px 10px;
        text-decoration: none;
        font-weight: 600;
    }
    .view_certificate>a:hover{
        transition: 300ms;
        box-shadow: 0px 0px 10px #ff16f4;
    }
    .contacts{
        height: 800px;
        width: 100%;
        display: grid;
        place-content: center;
    }
    .contacts_heading{
        font-size: 34px;
        font-weight: 700;
        color: #ff16f4;
        text-align: center;
    }
    
    form{
        height: 600px;
        width: 50vw;
        border: 2px solid #ff16f4;
        display: grid;
        place-content: center;
        gap: 20px;
        border-radius: 20px 20px 20px 20px;
    }
    form>p{
        color: white;
        font-size: 28px;
        font-weight: 700;
        text-align: center;
    }
    .fullname,.email{
        height: 80px;
        width: 40vw;
        color: white;
        font-weight: 500;
    }
    .fullname>input,.email>input{
        height: 40px;
        width: 39vw;
        border-radius: 6px 6px 6px 6px;
        border: 1.5px solid white;
        background-color: transparent;
        margin-top: 10px;
        color: white;
        text-indent: 20px;
    }
    .fullname>input:focus,.email>input:focus{
        outline: 1.5px solid #ff16f4;
    }
    .message{
        height: 130px;
        width: 40vw;
        align-content: center;
        color: white;
    }
    .message>textarea{
        height: 85px;
        width: 39vw;
        text-indent: 20px;
        background-color: transparent;
        border-radius: 6px 6px 6px 6px;
        border: 1.5px solid white;
        color: white;
        margin-top: 10px;
    }
    .message>textarea:focus{
        outline: 1.5px solid #ff16f4;
    }
    .submit{
        height: 50px;
        font-size: 20px;
        font-weight: 600;
        border: 1px solid #ff16f4;
        background-color: #ff16f4;
        border-radius: 10px 10px 10px 10px;
        cursor: pointer;
    }
    .submit:hover{
        transition-duration: 300ms;
        background-color: #d100d9;
        border: 1px solid #d100d9;
    }
    footer{
        height: 300px;
        width: 100%;
        display: grid;
        place-content: center;
    }
    .footer_heading{
        color: #ff16f4;
        font-size: 30px;
        font-weight: 700;
        text-align: center;
    }
    footer>p{
        color: white;
        text-align: center;
        font-size: 18px;
        margin-top: 20px;
    }
    .footer_links{
        margin-top: 20px;
        display: flex;
        justify-content: space-evenly;
        align-items: center;
    }
    .github_footer{
        color: white;
        font-size: 34px;
        text-decoration: none;
    }
    .x_footer{
        color: white;
        font-size: 34px;
        text-decoration: none;
    }
    .linkedin_footer{
        font-size: 34px;
        color: #5676ff;
        text-decoration: none;
    }
    .email_footer{
        color: orangered;
        text-decoration: none;
        font-size: 34px;
    }
}