*{
    margin: 0;
    padding: 0;
    background: border-box;
    font-family: 'Josefin Sans', sans-serif;
}

.navbar{
    height: 100vh;
    width: 100%;
    background-color: rgb(15, 15, 15);
    background-size: cover;
}
nav{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top:45px ;
    padding-left: 8%;
    padding-right: 8%;
}

.logo{
    color: white;
    font-weight: bold;
    font-size: 35px;
    letter-spacing: 1px;
    cursor: pointer;
}

span{
    color: rgb(184, 248, 56);
}

nav ul li{ 
    display: inline-block;
    list-style: none;
    padding: 10px 25px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    text-transform: capitalize;
}

a:hover{
    color: rgb(184, 248, 56);
    transition: 0.4s;
}


.btn{
    background-color:rgb(184, 248, 56);
    padding: 10px 25px;
    border-radius: 2px solid transparent;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    color: white;
    transition: .4s;
}

.btn:hover{
    transform: scale(1.2);
    background-color: transparent;
    border: 2px solid rgb(184, 248, 56);
}

.content{
    position: absolute;
    top: 50%;
    left: 15%;
    transform: translateY(-50%);
}

h1{
    color: white;
    font-weight: bold;
    margin: 20px 0px 20px;
    font-size: 70px;
}

h3{
    color: white;
    font-size: 30px;
}

h6{
    color: white;
    font-size: 15px;
}

.about{
    width: 100%;
    padding: 100px 0px;
    background-color: rgb(24, 23, 23);
}

.aboutme{
    width: 550px;
}

.main{
    width: 1350px;
    margin: 0px auto;
    max-width: 90%;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.aboutme h2{
    color: white;
    font-size: 70px;
    text-transform: capitalize;
    margin-bottom: 20px;
}

p{
    color: white;
    letter-spacing: 1px;
    text-transform: capitalize;
    font-size: 20px;
    margin-bottom: 40px;
    line-height: 30px;

}

button{
    background-color:rgb(184, 248, 56);
    padding: 15px 35px;
    border-radius: 2px solid transparent;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    color: white;
    transition: .4s;
}

button:hover{
    transform: scale(1.2);
    background-color: transparent;
    border: 2px solid rgb(184, 248, 56);
    cursor: pointer;
}
      
.gif{
    margin-left: 60%;
    margin-top: 10%;
}

.contact-me{
    width: 100%;
    height: 400px;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    background-color:  rgb(12, 12, 12);
}

.contact-me p{
    color: white;
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 30px;
}

.contact-me .hire{
    background-color:rgb(184, 248, 56);
    padding: 15px 35px;
    border-radius: 2px solid transparent;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    color: white;
    transition: .4s;
}

.contact-me .hire:hover{
    background-color: transparent;
    border: 2px solid rgb(184, 248, 56);
    cursor: pointer;
}

footer{
    width: 100%;
    height: 400px;
    display: flex;
    background-color: rgb(24, 23, 23);
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

footer p:nth-child(1){
    font-size: 50px;
    color: white;
    font-weight: bold;
    margin-bottom: 40px;
}

footer p:nth-child(2){
    color: white;
    font-size: 15px;
    width: 430px;
    align-items: center;
    line-height: 20px;
}

.social{
    display: flex;
}

.social a{
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgb(184, 248, 56);
    text-decoration: none;
    border-radius: 50%;
    margin: 22px 10px;
    color: white;
    }

.social a:hover{
transform: scale(1.2);
transition: .3s;
}

.end{
    position: absolute;
    justify-content: center;
    font-size: 10px;
    margin-top: 350px;
}