

*{
    margin: 0;
    padding: 0;
     scroll-behavior: smooth;
}
body{
    display: grid;
    grid-template-rows: auto ;
    background: black;
    color: white;
    min-height: 100vh;
    height: 100%;
    font-family: Arial, Helvetica, sans-serif,'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}
header{
    font-family:   'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif,monospace,'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-weight: 450;
    margin: 5px 10px;
    position: sticky;
    z-index: 1000;
    background: white;
    color: #000;
    text-shadow: #fff;
    box-shadow: 0 6px 8px rgb(255, 255, 255);
    border-radius: 8px;
    padding: 20px;
    top: 0;
    border: 0.5px solid lightgreen;
}
main{
    display: grid;
    grid-template-rows: auto;
}

/* ======== About Me ======== */
#aboutMe{
    display: flex;
    flex-direction: column;
    background: #fff;
    color: #000000;
    padding: 10px;
    margin: 10px;
    border-radius: 10px;
    border: 0.5px solid lightgreen;
    gap: 10px;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    text-shadow: #fff;
}
#contactBtn{
    background: darkgreen;
    color: #fff;
    padding: 5px;
    border: none;
    border-radius: 8px;
    scroll-behavior: smooth;
    font-weight: 600;
}
#contactBtn:hover{
    color: #fff;
    transform: translateX(-5px);
}
.aboutMe{
    margin: 20px;
    box-shadow: 0 10px 25px rgb(0,0,0,0.1);
    padding: 15px;
    border-radius: 8px;
    border: 0.3px solid lightgreen;
}
.aboutMe h3{
    font-family: Georgia, 'Times New Roman', Times, serif;
    margin-bottom: 10px;
    font-weight: 600;
}
.aboutMe p{
    line-height: 1rem;
    font-weight: 400;
}
/* ====== About Me ends here ========= */


/* ======= My Projects ========= */
#myProjects{
    background: white;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    color: #000000;
    margin: 10px;
    padding: 10px;
    border-radius: 10px;
    border: 0.5px solid lightgreen;
}
#myProjects h2{
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif,'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    margin-bottom: 10px;
    text-shadow: #fff;
}
#projectCard{
    grid-template-columns: repeat(auto-fit,minmax(280px, 1fr));
    display: grid;
    gap: 10px;
    align-items: center;
}
#project{
    box-shadow: 0 10px 25px rgb(0,0,0,0.1);
    max-width: 100%;
    width: 90%;
    max-height: 100%;
    height: 90%;
    padding: 12px;
    border-radius: 12px;
    border: 0.3px solid lightgreen;
}
#project img{
    border-radius: 8px;
    margin: 5px;
}
#project h5{
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif,'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    margin: 5px;
    font-size: 1.2rem;
}
#project button{
    background: darkgreen;
    color: #fff;
    padding: 5px;
    margin: 8px;
    border: none;
    border-radius: 8px;
    font-weight: 550;
}
#project p{
    margin: 5px;
    font-size: 0.9rem;
}
/* ======= Projects Ends here =========== */


/* ======== My Skills ========== */
#mySkills{
    background: #fff;
    font-family:  Arial, sans-serif;
    color: #000;
    margin: 20px 10px;
    padding: 10px;
    border-radius: 10px;
    border: 0.5px solid lightgreen;
}
#techBox{
    justify-content: left;
    display: grid;
    grid-template-columns: 120px 120px;
}
.tech{
    margin: 10px;
    padding: 10px;
    border: 0.3px solid lightcyan;
    border-radius: 8px;
    box-shadow: 0 6px 10px rgb(0,0,0,0.1);
}
#mySkills h3{
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif,'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    margin: 10px;
    font-weight: 550;
    text-shadow: #fff;
}
/* ========= My Skills Ends here ========= */

/* ======== Footer And Contact Info ======== */
footer{
    background: #fff;
    margin: 10px;
    border-radius: 10px;
    border: 0.5px solid lightgreen;
    color: #000000;
    padding: 10px;
    font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}
#contactBox{
    border: 0.3px solid lightcyan;
    margin: 10px;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 6px 10px #0000001a;
}
.contactCard{
    margin: 5px;
    display: flex;
    flex-direction: row;
}
#copyright{
    margin-top: 8px;
    justify-content: center;
    display: flex;
    font-size: 1rem;
}
.contactCard a{
    text-decoration: none;
    color: #000000;
}
/* ======== Footer Ends here ========= */