
body{
    background-color: blue;
    background-image: url(background1.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    margin: 0;
}
.main
{
    background-color: red;
    width: 100%;
    
}
.navbar{
    display: flex;

    justify-content: space-between;
    align-items: center;
    background-color: rgb(6, 6, 6);
    height: 37px;
    width: 100%;
    padding: 1px 40px;
    padding-right: 128px;
    top: 0;
    position: fixed;

    

}
.logo{
    color: white;
    
}
.nav_items{
    display: flex;
    list-style: none;
    color: white;
    gap: 34px;
    
}
.contain{
    display: flex;
    color: wheat;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-top: 200px;
    margin-bottom: 0;

    

}
.contain>h6{
    color: rgb(14, 119, 184);
    top: 0;
}
.contain:hover{
    font-size: 20px;
}
.desc{
    height: auto;
    color: rgb(14, 148, 215);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 9px;
    
}
.services{
    

}
.app_service{
    background-color: white;
    margin: 40px 34px;
    height: 600px;
    left: 0;
    width: 300px;
    
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 7px 7px 10px blue,-7px -7px 10px red;
    border-radius: 23px;
    
}
.service_container{
    
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 55px;
    right: 0;
    overflow-x: scroll;
}
.service_container>p{
    color: white;
    font-size: 23px;
    width: 800px;

}
@media (max-width: 768px) {
    .navbar{
        overflow-x: auto;

    }
    .contain{
        display: block;
    }
    .service_container{
        display: block;
    }
    .service_container>p{
        padding: 10px 10px;
    }
}
    

    
