*{
    padding: 0;
    margin: 0;
   box-sizing: border-box;
}
body{
    overflow-x: hidden;
    overflow-y: hidden;
}
#home{
    height: 100vh;
    background: #0162be;
    color: #fff;

}
.logo{
    width: 50px;
    height: 50px;
    border-radius: 20px;
  
}
.container{
    margin: 0 7rem;
    height: 100%;
}
a{
    text-decoration: none;
    color: #fff;
    padding : 20px;
}

nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0 ;
}
ul{
    list-style: none;
    display: flex;
    align-items: center;
}
.contant
{
    display: flex;
    justify-content: space-between;
    height: 70%;
    align-items: center;
}
.pipsim{
    border-radius: 48px;
    height: 300px;
    border-color:#0162be; ;
    animation: animation1 1s ease-out;
   

}

.h1{
    font-size: 40px;
    font-weight: 900;
    margin-bottom: 10px;
}
span {
    font-size: 70px;
}
p{
    font-weight: 300;
    margin-bottom: 30px;
    line-height: 1.4;
    width: 60%;
}
.btn{
    font-size: 14px;
    padding: 10px 15px;
    background-color: #fff;
    color: #000;
    border-radius: 30px;
}
.btn:hover{
    background-color: transparent;
    color:#fff;
    border: 1px solid #fff;
    transition: all 0.7s;

    
}
.sosial{
    margin-left: 3rem;
    margin: 30px 0;
    animation: animation1 1s ease-out;
    
}
.pipsit{
    width:150px;
    margin: auto;
    display: flex;
    animation: animation2 1s ease-out;
 
}


@keyframes animation1{
    0%{
        transform: translateX(500px);
    }
    100%{

        transform: translateX(0);
    }
}
@keyframes animation2{
        0%{
            transform: translateY(200px);
        }
        100%{
    
            transform: translateY(0);
        }
}
