
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: sans-serif;
    margin: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #e0f7fa;
}

.main 
{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}


.navbar 
{
    width: 86%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    position: relative;
}

.navbar .logo {
    width: 160px;
    
}

.navbar ul 
{
    display: flex;
    gap: 16px;
    list-style: none;
}

.navbar ul li a {
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    color: black;
    transition: color 0.4s ease;
}

.info {
    text-align: center;
    margin: 6% 0 0 0;
}

.info h1 {
    font-size: 48px;
    color: black;
    margin: 10px 0;
}

.info h2 {
    font-size: 18px;
    color: black;
    margin: 10px 0;
}

.info a {
    text-decoration: none;
    color: #fff;
    background: black;
    margin: 26px 0;
    padding: 10px 18px;
    border-radius: 10px;
    display: inline-block;
    transition: background 0.4s ease;
}

.info a:hover {
    background: rgb(59, 174, 209);
}


.about-box, .skills-box, .project, .resume-box, .contact {
    text-align: center;
    width: 90%;
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    border: 2px solid black;
    border-radius: 10px;
    background-color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.about-box h2, .skills-box h2, .project h2, .resume-box h2, .contact h2 {
    font-size: 24px;
    color: black;
    margin-bottom: 20px;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.skills-box .skill {
    border: 1px solid black;
    border-radius: 5px;
    padding: 10px;
    background-color: white;
}


.project img {
    max-width: 100%;
    height: auto;
    margin-top: 20px;
}


.resume-box p {
    font-size: 16px;
    color: grey;
    margin-bottom: 20px;
}

.resume-link {
    text-decoration: none;
    color: white;
    background: black;
    padding: 10px 18px;
    border-radius: 10px;
    display: inline-block;
    transition: background 0.4s ease;
}

.resume-link:hover 
{
    background: lightblue;
}


.contact p, .contact a {
    font-size: 16px;
    color: grey;
    display: block;
    margin: 10px 0;
}

.contact a {
    text-decoration: none;
    color: black;
    transition: color 0.4s ease;
}

.contact a:hover {
    color: lightblue;
}


@media (min-width: 1200px) {
    .navbar {
        width: 80%;
    }

    .info h1 {
        font-size: 56px;
    }

    .info h2 {
        font-size: 22px;
    }

    .info a {
        padding: 12px 20px;
    }

    .about-box, .skills-box, .project, .resume-box, .contact {
        width: 80%;
    }
}
.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease;
}



.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease;
}


.whatsapp-button:hover {
    background-color: #20b954;
}

.whatsapp-button img {
    width: 30px;
    height: 30px;
}

