

body {
    font-family: 'Arial', sans-serif;
    background-color: #121212;
    color: #fff;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    justify-content: center;
    text-align: center;
}

.header{
  position: fixed;
    background-color: #222;
    padding: 20px 0;
    width: 100%;
}


.titl {
    font-size: 24px;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

.nav-links {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
}

.nav-links a {
    text-decoration: none;
    color: #fff;
    font-size: 18px;
    padding: 10px 10px;
    border-radius: 5px;
    transition: background-color 0.3s;
    background-color: #9a62d7;
}

.nav-links a:hover {
    background-color: #9a62d7; 
}


.start {
    background-color: #333;
    padding: 370px 0;
    text-align: center;
}

.start h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.start p {
    font-size: 20px;
    margin-bottom: 30px;
}

.con{
    text-decoration: none;
    background-color: #9a62d7;
    color: #fff;
    padding: 12px 30px;
    font-size: 18px;
    border-radius: 30px;
    transition: background-color 0.3s;
}

.con:hover {
    background-color: #7e4db2;
}


.about {
    padding: 150px 0;
    text-align: center;
    background-color: #1e1e1e;
}

.num2 {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.skills {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.skill {
    background-color: #444;
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 14px;
}


.projects {
    padding: 165px 0;
    background-color: #1e1e1e;
    text-align: center;
}

.projects h2 {
    font-size: 32px;
    margin-bottom: 40px;
}

.griddy {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.project {
    background-color: #444;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.project h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.project p {
    font-size: 16px;
    margin-bottom: 20px;
}

.project .btn {
    text-decoration: none;
    background-color: #9a62d7;
    color: #fff;
    padding: 10px 25px;
    border-radius: 30px;
    font-size: 16px;
    transition: background-color 0.3s;
}

.project .btn:hover {
    background-color: #7e4db2;
}

.probild {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    
}

.contact {
    padding: 60px 0;
    text-align: center;
    background-color: #333;
}

.contact p {
    font-size: 18px;
    margin-bottom: 30px;
}


footer {
    background-color: #222;
    padding: 20px 0;
    text-align: center;
}

footer p {
    font-size: 16px;
    color: #fff;
}


@media  (max-width: 768px) {
    .start h1 {
        font-size: 36px;
    }

    .start p {
        font-size: 18px;
    }

    .nav-links {
        flex-direction: column;
        align-items: center;
    }

    .nav-links a {
        padding: 10px;
        font-size: 16px;
    }

    .griddy {
        grid-template-columns: repeat(2, 1fr);
    }

    .probild {
        height: 150px;
    }

    .about {
        padding: 100px 0;
    }

    .num2 {
        font-size: 16px;
    }

    .skills {
        flex-direction: column;
        gap: 10px;
    }

    .skill {
        font-size: 12px;
        padding: 8px 15px;
    }
}

@media  (max-width: 480px) {
    .start h1 {
        font-size: 28px;
    }

    .header{
      display: none;
    }

    .start p {
        font-size: 16px;
    }

    .nav-links {
        flex-direction: column;
        gap: 10px;
    }

    .nav-links a {
        padding: 8px 12px;
        font-size: 14px;
    }

    .griddy {
        grid-template-columns: 1fr;
    }

    .probild {
        height: 120px;
    }

    .about {
        padding: 80px 0;
    }

    .num2 {
        font-size: 14px;
    }

    .skills {
        flex-direction: column;
        gap: 8px;
    }

    .skill {
        font-size: 12px;
        padding: 8px 12px;
    }
}