/* @import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap'); */

@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');


html{
    background: #101418;
}

*{
    padding: 0;
    margin: 0;
    list-style: none;
    text-decoration: none;
    color: #fff;
    font-family: "Poppins",sans-serif;
    scroll-behavior: smooth;
}

/* Header */
.header-wrapper{
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1300px;
    margin: auto;
    padding: 20px;
}
button{
    background: #1a53ff;
    border: none;
    border-radius: 5px;
    padding: 5px 12px;
    cursor: pointer;
}


/* HERO */
.hero{
    text-align: center;
    height: 60vh;
    background: #181f26;
    margin-bottom: 80px;
    margin-top: -70px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 20px;
    

}
.profile-img{
    /* width: 45vh;
    height: 45vh; */
    /* height: 75px;
    width: 130px; */
    /* object-fit: cover; */

    width: 180px;
    height: 180px;
    border-radius: 9999px;
    border: 5px solid #1a53ff;
    object-fit: cover;
}

.hero h1{
    font-size: 3rem;
    max-width: 700px;
}

.hero p{
    margin-top: 10px;
    opacity: 0.6;
    font-size: 1.3rem;

}



h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

/* ABOUT */
.about-wrapper, .project-wrapper, .socials-wrapper{
    max-width: 1000px;
    margin: 100px auto;
    margin-top: 0;
    padding: 20px;
}

.about-wrapper{
    justify-content: center;
    display: flex;
}

.about-wrapper .col p{
    line-height: 32px;
}

.about-wrapper .col{
    flex: 1;
}


.about-wrapper .skills{
    margin-left: 50px;
}

.about-wrapper .skills ul{
    display: flex;
    flex-wrap: wrap;
}

.about-wrapper .skills ul li{
    border: 2px solid #2d2d2d;
    width: max-content;
    padding: 3px 10px;
    border-radius: 12px;
    margin: 7px;
    margin-left: 500;
}

/* PROJECT */

.project ul{
    display: flex;
    flex-wrap: wrap;
}

.project ul li{
    background: #181f26;
    margin: 13px;
    margin-left: 0;
    padding: 10px;
    border-radius: 15px;
    width: 300px;
}

.project ul li img{
    border-radius: 15px;
    margin-bottom: 17px;
    width: 100%;
}

.socials-wrapper{
    line-height: 30px;
}

.socials-wrapper .socials-icons img{
    border: 2px solid #2d2d2d;
    margin-right: 20px;
    margin-top: 20px;
    padding: 6px;
    border-radius: 12px;
}

.socials-wrapper .socials-icons igm:hover{
    background: #2d2d2d;
}

/* MOBILE */
@media screen and (max-width: 768px){
    .hero h1{
        font-size: 2rem;
    }

    .about-wrapper{
        flex-direction: column;
    }

    .about-wrapper .skills{
        margin-left: 0;
        margin-top: 100px;
    }

    .project ul li{
        width: 100%;
    }
}