.home{
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
}
body{
    background-color: black;
    color: red;
}
html{
    font-family: "josefin Sans", sans-serif;
    font-size: 16px;
    color:  var(--lightcolor);
}
span{
    color: aliceblue;
}
h2{
    font: size 2.2rem; 
}
span:hover{
    font-size: 30px;
}
nav{
    padding-top: 2rem;
    padding-left: 3rem;
    padding-right: var(--pading);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
nav ul li{
    list-style-type:none ;
    display: inline-block;
    margin: 0.8rem 1.5rem;
    
}
nav ul li a{
    color: lightblue;
    text-decoration:none ;
    text-transform: capitalize;
    transition: 0.4s;
}

nav ul li a:hover {
    color: aqua;
    font-size: 24px;

}
.conte{
    flex-grow:1 ;
    padding: 0 var(--pading);
    display: flex;
    align-items: center;
}
h1{
    font-size: 3rem;
    margin: 1.7rem 0; 
    margin-top: 200px;
    margin-left: 120px;
    transition: 0.5s;
}
p{
    color: aqua;
    margin-top: 70px;
    margin-left: 120px;
}
h1:hover {
    color: green;
}
.text{
    position: relative;
    bottom: 80px;
    padding-left: 3rem;
}
.img{
    width: 45%;
    height: 90%;
}
.img img{
    position: absolute;
    margin-left: 300px;

}
img{
    width: 600px;
    padding-left: 50rem;
    padding:2rem var(--pading);
}
.about{
    background-color: rgb(43, 40, 40);
    width: 100%;
    display: flex;
}
h3{
    color: palevioletred;
    font-size: 40px;
    transition: 0.5s;
}
h3:hover {
    color: darkblue;
}
.serv{
   background: rgb(87, 81, 81);
   width: 100%;
   height: 500px;
}
.gf{
    background-color: darkred;
    color: white;
    border-radius: 12px;
    padding-left: 200pxrem;
}

.cont{
    display: flex;
    justify-content: center;
}
.cart{
    background-color: black;
    width: 320px;
    height: 300px;
    margin: 10px;
    border-radius: 23px;
    transition: 1s;
}
.cart:hover {
    background-color: darkblue;
    color: black;
}
.h{
    width: 20pc;

}
.h{
   height: 10pc;
}
button{
    width: 170px;
    border: 0;
    padding: 12px 10px;
    outline: none;
    color: #fff;
    background-color: palevioletred;
    border-radius: 22px;
    transition: 1s;
}
button:hover{
    background-color: black;
    border-color: red;
}
.tz{
    color:darkred ;
    margin-top: 50px;
}
.co{ 
    background-color: rgb(39, 35, 35);
    width: 100%;
    height: 300px;
}

button{
   background-color: red;
   color: white;
   width: 130px;
   margin-left: 5rem;
   margin-top: 4rem;
   border-radius: 22px;
}
@media(max-width:1000px){
    body{
        background-color: blueviolet;
        color: black;
    }
    p{
        color: yellow;
        margin-left: 30px;
    }
    img{
        width: 0px;
    }
    a{
        color: darkred;
    }
    h1{
        margin-left: 30px;
        color: beige;
    }
    .cont{
        display: block;
        justify-content: center;
        margin-left: 90px;
    }
    .cart{
        background-color: black;
        width: 200px;
        height: 200px;
        margin: 10px;
        border-radius: 23px;
        transition: 1s;
    }
    .cart:hover {
        background-color: aqua;
        color: black;
    }
    a{
        font-size: 0px;
    }
    .cart img{
        width: 0px;
        height: 0px;
    }
    .cart button{
        background-color: transparent;
        color: transparent;
    }
    .serv{
        height: 720px;
    }
}