*{
    margin :0;
    padding: 0;
    box-sizing: border-box;
    
}

body{
    font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif ;
    line-height: 1.6;
    color: #3deaa4;
    background-color: #111318;
}   

.header{
    background-color: rgb(74, 171, 213);
    padding: 15px;
    text-align: center;
    position: fixed;
    width: 100%;
   color: white;
}

.header a{
    color: white;
    text-decoration: solid;
    font-weight: bold;
    padding:10px 15px;

}

.header a:hover{
    background-color: #3deaa4;
    border-radius: 5px;

}

.apon{
    background-color: #111318;
    padding: 100px 20px 80px;
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 50px;
     max-width: 1200px; 
    margin-left: auto;
    margin-right: auto;
}

.apon-text{
    flex: 1;
}

.apon h1{
    font-size: 3rem;
    color: #3deaa4;
}

.apon-sub{
    font-size: 1.3rem;
    color: #3deaa4;
    margin-bottom: 15px;
    font-weight: normal;
}

.apon-des{
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.6;
}


.apon-image{
    flex: 1;
    display: flex;
    justify-content: center;
    background-color: #111318;
}

.btn{
    display: inline-block;
    background-color: #3deaa4;
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    border: none;
    cursor: pointer;
}

.btn:hover{
    background-color: #159160;
}

#about{
    padding: 80px 20px;
    background-color: #111318;
}

#about h2{
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #3deaa4;
}

.abo-con{
    display: flex;
    align-items: center;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    flex-direction: row-reverse;
    color: white;
}

.abo-text{
    flex: 2;
}

.abo-text p{
    font-size: 1.1rem;
    margin-bottom: 20px;
    text-align: justify;
}

.abo-img{
    flex: 1;
}

.skills{
    padding: 80px;
}

.skills h2{
    
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.skills-grid{
    /* max-width: 800px; */
    place-content: center;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
}
.skills-item:hover{
    background-color: #353b4c;
}

.skills-item{
    text-align: center;
    padding: 30px;
    background-color: #323439;
    border-radius: 10px;
    border: 2px solid #3deaa4;
}

.skills-item h3{
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.skills-item p{
    font-size: 1rem;
}

.project{
    padding: 80px 20px;
    background-color: #323439;
}

.project h2{
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.project-grid{
    place-content: center;
    display: grid;
    grid-template-columns: 1;
    margin: 0 auto;
    /* max-width: 1200px; */
}

.project-item{
    background-color: #323439;
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,1);
}

.project-image{
    size: 50px 50px;
    border-radius: 50%;
    margin-bottom: 20px;
    size: 10px 10px;
    align-items: center;
    
}

.project-item h3{
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.project-item p{
    margin-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.project-link{
    display: inline-block;
    background-color: rgb(67, 123, 191);
    color: #19e493;
    padding: 8px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 0.9rem;
}

.project-link:hover{
    background-color: #24262b;
}

.contact{
    padding: 80px 20px;
    background-color: #111318;
}
.contact h2{
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.contact-content{
    display: flex;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info{
    flex: 1;
}

.contact-item{
   font-size: 1.1rem;
   
}
.contact-item p{
    color:white;
}
.contact-item p a{
    color:#159160;
   
}

.form{  
    flex: 1;
}

.form-group{
    margin-bottom: 10px;
}

.form-group label{
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.form-group input, .form-group textarea{
    width: 100%;
    padding: 10px;
    border: 2px solid #14b268;
    border-radius: 5px;
    font-size: 1rem;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

.footer{
    background-color: rgb(74, 171, 213);
    color: white;
    text-align: center;
    padding: 30px 20px;
}

.footer p{
    font-size: 1rem;
}

html{
    scroll-behavior: smooth;
}