
@import url("https://fonts.googleeapis.com/css2?family=Roboto:wght@300;400&display=swap");


*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

.container{
    margin: 0 7rem;
    background-color: rgb(68, 99, 124);
    height: 100%;

}

body{
    font-family: "Roboto",sans-serif;
    overflow-x :hidden ;
}
#home{
    height: 100vh;
    background: rgb(66, 98, 123) ;
    color: #fff;
}

a{
    text-decoration: none;

}
ul{
    list-style: none;
}
nav{
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 25px 0;
}

nav .logo {
    width: 80px; ;
}
nav ul {
    display: flex;
    align-items: center;

}

nav ul a {
    padding: 25px;
    color: #fff;

}

#home .content{
display: flex;
justify-content: space-between;
align-items: center;
height: 70%;

}
#home .content img {
    width: 220px;
    animation:animation1 2s ease-out ;
     border-radius:10px ;
}

#home .content .content-text h1{
    font-size: 40px;
    font-weight: 900;
    margin-bottom:5px ;
    text-transform: uppercase;

}
#home .content .content-text h1 span{
     font-size: 70px;
}
#home .content .content-text h1 p{

    font-weight:300 ;
    margin-bottom: 30px;
    line-height: 1.4;
    width: 60%;
}

.btn{
    font-size:14px ;
    padding: 10px 15px;
    background-color: #fff;
    border-radius:30px ;
    color: black;
    transition: all 0.2s;

}
.btn:hover{
    background: transparent;
    border: 1px solid #fff;
    color:#fff ;
}
.social{
    margin-left:3rem ;
     animation:animation1 2s ease-out ;
    
}
.social i{
    color:#fff ;
    font-size: 25px;
    margin: 10px 0;

}

.all-types{
    display: block;
    width:100px ;
    margin: auto;
    animation:animation2 2s ease-out ;
}
@keyframes animation1{
    0%{
        transform: translateX(500px);
    }
    100%{
        transform:translateX(0) ;
    }
}
@keyframes animation2{
    0%{
        transform: translateY(200px);
    }
    100%{
        transform:translateY(0) ;
    }
}
/* tablet */
@media (max-width:900px) {
    .container{
        margin: 0 1rem;
    }
    nav ul a {
        padding:10 px ;
    }
    #home .content{
        flex-direction: column;
        text-align: center;
        padding: 2rem 0 0 ;
    }
     #home .content .content-text p{
      margin-bottom: 2rem;
        
     }
     #home .content .content-text p{
        width: 100%;

     }
     #home .content img{
        width: 100px;
        margin-bottom: 10px;

     }
    .social{
        margin-left: 0;
        margin-bottom: 15px;
    }
}

/* mobile */
@media (max-width:600px) {
nav{
    display: block;
   

}
 nav .logo{
      display: block;
      margin: 0 auto 15px;
 }
 nav ul{
    justify-content: center;
 }
 nav ul a{
    font-size: 12px;
 }
 .all-types{
    margin-top: 15px;
 }
}