*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Iceland", sans-serif;
    
}
.flex{
    display: flex;;
}
body{
    background-color: #141414;
}
html {
    scroll-behavior: smooth;
}

/** Header Styling **/
header {
    position: fixed;
    z-index: 1;
    width: 100%;
    background-color: #000000;
    color: #fff;
    padding: 30px 10px;
    text-align: center;
}
header ul{
    list-style: none;
    justify-content: flex-end;
}
header ul li a{
    color: #fff;
    display: inline-block;
    text-decoration: none;
    padding: 10px 15px;
    font-size: 20px;
    transition: all 0.3s ease;
}
header ul li a:hover{
    background-color: #222;
}
/** home **/
#home{
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
}
#home h1{
    font-size: 50px;
    margin-bottom: 20px;
}
#home p{
    font-size: 20px;
    max-width: 600px;
    line-height: 1.5;
}
/** skills **/
#skills{
    padding: 50px 20px;
    color: #fff;
    text-align: center;
}
#skills h2{
    font-size: 40px;
    margin-bottom: 30px;
}
#skills ul{
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}
#skills ul li{
    margin: 20px;
    background-color: #222;
    padding: 20px;
    font-size: 20px;
    width: 200px;
    transition: all 0.3s ease;
}
#skills ul li:hover{
    background-color: #333;
    transform: translateY(-5px);
}
#skills li img{
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
    object-fit: cover;
}

/** projects **/    
#projects{
    padding: 50px 20px;
    color: #fff;
    text-align: center;
}
#projects h2{
    font-size: 40px;
    margin-bottom: 30px;
}
.name-pj{
    text-align: left;
    font-size: 20px;
    padding-left:20px; ;
}
#projects ul{
    flex-wrap: wrap;
    gap: 30px;
    list-style: none;
}
#projects ul li{
    padding: 20px;
    background-color: #222;
    width: 600px;
    margin: 0 auto 40px auto;
}
#projects ul li a{
    display: inline-block;
    margin: 20px;
}

#projects li img{
    width: 100%;
    height: auto;
    object-fit: cover;
}
.sec-icons{
    display: flex;
    flex-direction: row;
    gap: 10px;
    width: 25px;
    height: 25px;
    margin-left: 20px;
    margin-bottom: 10px;
}
.sec-icons img{
    width: 30px;
    height: 30px;
    object-fit: cover;
}
.desc-pj{
    margin-left: 20px;
    text-align: justify;

}
.desc-pj a{
    color: #fff;
}
.desc-pj p{
    font-size: 20px;
}
/** contact **/
#contact{
    padding: 50px 20px;
    color: #fff;
    text-align: center;
}
#contact h2{
    font-size: 40px;
    margin-bottom: 30px;
}
#contact ul{
    list-style: none;
    font-size: 20px;
    line-height: 2;
}
#contact ul li{
    margin: 10px 0;
}
/** footer **/
footer{
    background-color: #000000;
    color: #fff;
    text-align: center;
    padding: 20px 10px;
    position: relative;
    bottom: 0;
    width: 100%;
}