*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "poppins",sans-serif;

}
body{
    
    color: #b047da;
}
.header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 10%;
    background-color: transparent;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}
.logo{
    font-size: 25px;
    color: #ededed;
    text-decoration:none;
    font-weight: 600;
}
.navbar a {
    font-size: 18px;
    color: #ededed;
    text-decoration: none;
    font-weight: 500;
    margin-left: 40px;
    transition: 3s;
    

}
.navbar a:hover{
    color: rgb(233, 85, 16);
    transition: .3s;
}
.home{
    height: 100vh;
    background: url('ttttt.jpg') no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding: 0 10%;
}
.home-content{
    max-width: 600px;
}

.home-content h1{ 
    max-width: 300px;
    font-weight: 900;
    line-height: 2;
    font-size: 28px;

}

.home-content h3{
    font-size: 32px;
    font-weight: 700;
    color: #00abf0;
}
.home-content p{
    font-size: 16px;
    margin: 20px 0 40px;


}
.home-content .btn-box {
    display: flex;
    justify-content: space-between;
    width: 345px;
    height: 50px;
    
}
.btn-box a {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 150px;
    height: 100%;
    background: #00abf0;
    border: 2px solid #00abf0;
    border-radius: 8px;
    font-size: 19px;
    color: #081b29;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    z-index: 1;
    overflow: hidden;
    transition: .5s; 

}
.btn-box a :hover {
    color: #00abf0;

}
.btn-box a:nth-child(2){
    background: transparent;
    color: #00abf0;
       
}
.btn-box a:nth-child(2):hover{
    background: #00abf0;
}
.btn-box a:nth-child(2)::before{
    background: #00abf0;
}

.btn-box a::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: black;
    z-index: -1;
    transition: .5s;
}
.btn-box a:hover::before{
    width: 100%;


}
.home-sci {
    position: absolute;
    bottom: 40px;
    width: 170px;
    background: none;
    display: flex;
    justify-content: space-between;
}
.home-sci a {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 2px solid #00abf0;
    border-radius: 50%;
    font-size: 20px;
    color: #00abf0;
    text-decoration: none;
    z-index: 1;
    overflow: hidden;
    transition: .5s;
}
.home-sci a:hover {
    color: #081b29;
    
}
.home-sci a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background:#00abf0;
    z-index: -1;
    transition: .5s;


}
.home-sci a:hover::before{
    width: 100%;
}
.home-imgHover {
    position: absolute;
    top: 0;
    right: 30px;
    width: 500px;
    height: 100%;
    background: transparent;
    border: 2x solid red;

}


.skills {
    margin-top: 60px;
    padding: 40px 10%;
    background: none;
    border-radius: 12px;
    color: #ededed;
}

.skills .heading {
    font-size: 32px;
    font-weight: 700;
    color: #00abf0;
    margin-bottom: 20px;
    border-bottom: 2px solid #00abf0;
    display: inline-block;
    padding-bottom: 8px;
}

.skills-list {
    list-style: none;
    padding-left: 0;
}

.skills-list li {
    font-size: 18px;
    margin: 10px 0;
    padding-left: 20px;
    position: relative;
    line-height: 1.6;
}

.skills-list li::before {
    content: '✔';
    position: absolute;
    left: 0;
    color: #00abf0;
    font-size: 16px;
}
