body{
            background-color:lightblue;
                font-family: Arial, 
            sans-serif;
                text-align:center;
            }
             h1{
                color:darkblue;
            }
            p{
                color:black;
                font-size: 20px;
            }
            img{
                border:3px solid black;
                border-radius:10px;
            }
            button{
                background-color:blue;
                color:white;
                padding:10px 20px;
                border:none;
            }
            button:hover{
                background-color:darkblue;
                cursor:pointer;
                transform:scale(1.05);
            }
            a{
                color:blue;
                text-decoration:none;
                font-weight: bold;
            } 
            nav{
                background-color: darkblue;
                padding:15px;
            }
            nav a{
                color:white;
                text-decoration:none;
                margin:15px;
                font-size: 18px;
                font-weight:bold;
            }
            nav a:hover{
                color: yellow
            }
            footer{
                background-color: darkblue;
                color:white;
                padding:20px;
                margin-top:40px;
            }
            #about{
                padding:40px;
            }
            #about h2{
                color:darkblue;
            }
            #about p{
                font-size:20px;
                max-width:700px;
                margin:auto;
                line-height:1,6;
            }
            #skills{
                padding:40px;
            }
            #skills h2{
                color:darkblue;
            }
            .skill{
                background:darkblue;
                color:white;
                width:250px;
                margin:15px auto;
                padding:15px;
                border-radius:10px;
                font-size:20px;
                transition:0.3s;
            }
            .skill:hover{
                background:blue;
                transform:scale (1.05);
            }

  /* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* BODY */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
}

/* NAVIGATION */
nav {
    background-color: darkblue;
    padding: 18px 20px;
    text-align: center;
}

nav a {
    color: white;
    text-decoration: none;
    margin: 0 18px;
    font-weight: bold;
}

nav a:hover {
    color: #00bfff;
}

/* PROFILE / HOME SECTION */
.profile {
    text-align: center;
    padding: 60px 20px;
    background-color: white;
}

.profile img {
    width: 160px;
    height: 160px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid darkblue;
    margin-bottom: 20px;
}

.profile h1 {
    color: darkblue;
    margin-bottom: 10px;
}

.profile p {
    font-size: 18px;
    margin-bottom: 20px;
}

/* BUTTON */
button {
    background-color: darkblue;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
}

button:hover {
    background-color: #0047ab;
}

/* LINKS */
.profile a {
    display: inline-block;
    margin: 15px 10px;
    text-decoration: none;
    color: darkblue;
    font-weight: bold;
}

/* ABOUT SECTION */
#about,
#About {
    padding: 50px 20px;
    text-align: center;
    background-color: #eaf0ff;
}

#about h2,
#About h2 {
    color: darkblue;
    margin-bottom: 20px;
}

#about p,
#About p {
    max-width: 750px;
    margin: auto;
    line-height: 1.8;
}

/* SKILLS SECTION */
#skills {
    padding: 50px 20px;
    text-align: center;
}

#skills h2 {
    color: darkblue;
    margin-bottom: 30px;
}

.skill-container,
.skills-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.skill {
    background-color: darkblue;
    color: white;
    padding: 20px 30px;
    border-radius: 10px;
    font-weight: bold;
    transition: 0.3s;
}

.skill:hover {
    transform: translateY(-5px);
}

/* PROJECTS SECTION */
#projects {
    padding: 50px 20px;
    text-align: center;
    background-color: #eef2f7;
}

#projects h2 {
    color: darkblue;
    margin-bottom: 30px;
}

.my-projects {
    max-width: 700px;
    margin: 20px auto;
    padding: 25px;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.my-projects h3 {
    color: darkblue;
    margin-bottom: 10px;
}

.my-projects p {
    line-height: 1.6;
}

/* CONTACT SECTION */
#contact {
    padding: 50px 20px;
    text-align: center;
    background-color: darkblue;
    color: white;
}

#contact h2 {
    margin-bottom: 15px;
}

#contact p {
    margin-bottom: 10px;
}

/* MOBILE RESPONSIVE */
@media (max-width: 600px) {

    nav a {
        display: block;
        margin: 10px 0;
    }

    .profile {
        padding: 40px 15px;
    }

    .profile img {
        width: 130px;
        height: 130px;
    }

    .skill-container,
    .skills-container {
        flex-direction: column;
        align-items: center;
    }

    .skill {
        width: 80%;
    }

    .my-projects {
        width: 95%;
    }
}
contact {
    padding: 50px 20px;
    text-align: center;
    background-color: darkblue;
    color: white;
}

#contact h2 {
    margin-bottom: 15px;
}

#contact p {
    margin-bottom: 10px;
}

@media (max-width: 600px) {
    nav a {
        display: block;
        margin: 10px 0;
    }

    .profile {
        padding: 40px 15px;
    }

    .profile img {
        width: 130px;
        height: 130px;
    }

    .skills-container {
        flex-direction: column;
        align-items: center;
    }

    .skill {
        width: 80%;
    }

    .my-projects {
        width: 95%;
    }
}
contact {
    padding: 50px 20px;
    text-align: center;
    background-color: darkblue;
    color: white;
}

#contact h2 {
    margin-bottom: 15px;
}

#contact p {
    margin-bottom: 10px;
}

@media (max-width: 600px) {

}
    nav a {
        display: block;
        margin: 10px 0;
    }

    .profile {
        padding: 40px 15px;
    }

    .profile img {
        width: 130px;
        height: 130px;
    }

    .skills-container {
        flex-direction: column;
        align-items: center;
    }

    .skill {
        width: 80%;
    }

    .my-projects {
        width: 95%;
    }
{}
#contact p,
#contact strong{
    color: white!important;

}
footer,
footer p{
    background-color:#111! important;
    color:white!important;
}
/*DESTOP NAVIGATION*/
@media (min-width: 601px){
    nav{
text-align:center;
}
nav a {
    display:inline-block !important;
  margin:0 15px;
}
}
.profile img{
    width:200px;
    height:200px;
    object-fit:cover;
    border-radius:50%;

}
/*PORTOFOLIO BUTTONS*/
.btn{
    display: inline-block;
    background-color:darkblue;
    color:white;
    padding:12px 22px;
    margin:20px 8px;
    border-radius:8px;
    text-decoration:none;
    font-weight: bold;
    transition:0.3s;
}
.btn:hover{
    background-color:blue;
    transform:translateY(-3s);
}
.btn{
    color:white !important;
    text-align: center;
}
.profile{
    padding:30px 20px;
}
.profile img{
    margin-bottom:10px;
}
#about{
    width:100%;
    padding:50px 20px;
    text-align: center;
}
#about h2{
    color:darkblue;
    margin-bottom:20px;
}
#about p{
    width:90% !important;
    max-width:750px !important;
    margin:0 auto !important;
    line-height: 1.7;
    font-size:18px;
}
.skill-container{
    display:flex;
    flex-wrap:wrap;
    justify-content: center;
    gap:20px;
}
.skill{
    width:220px !important;
    margin:10px;
}
#my-projects{
    padding:50px 20px;
    text-align:center;
    background-color:#f4f4f4;
}
#my-projects h2{
    color:darkblue;
    margin-bottom:30px;
}
.my-projects,
.my-projects{
    background-color: white;
    width:280px;
    margin:15px auto;
    padding:25px;
    border-radius:12px;
    box-shadow: 0 5px 15px
    rgba(0,0,0,.12);
}
.my-projects h3,
.projects h3{
    color:darkblue;
    margin-bottom: 10px;
}
.my-projects p,
.projects p{
    line-height: 1.6;
}
#my-projects{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap:25px;
}
#my-projects h2{
    width:100%;
}
.project-card{
    background-color:white;
    width:280px;
    padding:25px;
    border-radius:12px;
    box-shadow: 05px 15px
    rgba(0,0,0,0.12);
    text-align: center;
}
.project-card h3 {
    color:darkblue;
    margin-bottom:10px;
}
.project-card p {
    line-height: 1.6;
}
#contact{
    padding:50px 20px;
    text-align: center;
    background-color: darkblue;
    color: white;
}
#contact h2{
    margin-bottom:25px;
    color:white;
}
#contact p{
color: white !important;
margin:10px 0;
font-size: 18px;
}
#contact strong{
    color:white !important;
}
footer p{
    background-color: #111;
    color:white;
    text-align: center;
    padding:20px;
}
footer p{
    margin:0;
    color: white !important;
}
#contact p:last-child{
    max-width: 800px;
    margin:20px auto 0;
    line-height: 1.6;
}
@media (max-width: 600px) {
    .project-card{
        width:90%;
    }
}