@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&display=swap');

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

html {
    scroll-behavior:smooth;
}
body{
  font-family: "Poppins", sans-serif;
  font-size: 18px;
}
main{
    height: 100vh;
    padding-top: 80px;
}
header {
  display: flex;
  justify-content:space-evenly; 
  cursor: pointer;
  background-color: black; 
  padding:10px; 
  color: white;
  width: 100%; 
  top: 0px;
  position: fixed;           /* keeps it above content */
}
nav{
    display: flex;
    margin-top: 5px;
}
li {
    list-style: none;
    margin-left: 30px;
}
a{
    text-decoration: none;
    color: white;
    font-size: 22px;
}
.name{
    font-family: "Dancing Script", cursive;
    font-weight: 600;

}

.home-container{
    display: flex;
    justify-content: space-evenly;
    margin-top: 200px;
}
.profile{
    width: 400px;
    height: 400px;
    border-radius: 50%;
}
.about-me{
    margin-top: 100px;
}
.full-name{
    text-decoration: none;
}
h2{
    font-size: 3rem;
    font-weight: 500;
    text-decoration: underline;
}
h3,p,button{
    margin-top: 16px;
}
.role{
    font-style:italic;
    font-size: 25px;
}
.hire-me-button{
    padding: 15px;
    background-color: black;
    border-radius: 10px;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;

    &:hover{
        background-color: rgb(42, 40, 40);
    }
}
section{
    display: flex;
    justify-content: center;
    align-items: center;
    
}
.short-introduction{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 600px;
    margin-left: 200px;
}
#about-me{
    display: flex;
    flex-direction:column;
    height: 100vh;
}
.about-container{
    margin-top: 100px;
}

.javascript-img,.python-img,.tailwind-img,.html-img,.react-img,.sass-img,.java-img{
    width: 50px;
    height: 50px;
    margin-left: 15px;
    margin-top:10px;
    transition: transform 0.2s ease-in-out;

    &:hover{
        transform: scale(1.1);

    }

}
ul{
    display: flex;
    flex-direction: row;
}
li{
    display: flex;
    flex-direction: column;
}

.school,.self-learn{
    width: 600px;
    text-align: center;
    margin-left: 170px;

}
.git-img{
    width: 60px;
    height: 60px;
    transform: scale(1.1);
    transition: transform 0.2s ease-in-out;
}
.css-img{
    width: 60px;
    height: 60px;
    transform: scale(1.1);
    transition: transform 0.2s ease-in-out;
}
.education{
    margin-top: 40px;
}
.education-img{
    width: 30px;
    height: 30px;
    margin-top: 20px;
}
.sql-img{
    margin-left: 0px;
    margin-top: 15px;
}
.education-list{
    display: flex;
    flex-direction: column;
}
.skills{
    margin-top: 50px;
}
.skill-name{
    margin-left: 10px;
}
.skill-img-container{
    margin-top: 10px;
    display: flex;
    justify-content: center;
}
h3{
    text-align: center;
}
#projects{
    height: 90vh;
}
#contact{
    height: 90vh;
}

@media screen and (max-width:500px){
    nav{
        display: none;
    }
    .profile{
        width: 200px;
        height: 200px;
        margin-right: 20px;
    }
    .home-container{
        flex-direction: column;
        align-items: center;
        margin-left: 40px;
        margin-top: 100px;
    }
    .about-me{
        margin-top: 50px;
    }
    h2{
        font-size: 2rem;
    }
    .role{
        text-align: center;   
    }
    .tittle-line{
        text-align: center;
        margin-right: 20px;
    }
    .hire-me-button{
        margin-left:110px;
        margin-top: 20px;
    }
}