@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('navbar.css');
@import url('home.css');
@import url('footer.css');
*{
    font-family: 'Poppins', sans-serif;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body{
    background-color:#26243A;
    body {
        overflow-x: hidden;
    }
}

section{
    padding: 28px 8%;
}

@media  screen and (max-width: 1170px) {
    body{ 
    padding-top: 0px;
    background-image: url(../images/imgban.png);
    background-repeat: no-repeat;
    background-position-x: center;
    background-position-y: 2%;
    background-position: fixed;
    background-size: 1300px 730px;
    }
}

@media  screen and (max-width: 768px) {
    body{ 
        padding-top: 0px;
        background-image: url(../images/imgban.png);
        background-repeat: no-repeat;
        background-position-x: center;
        background-position-y: 1.7%;
        background-position: fixed;
        background-size: 1200px 700px;
    }
    
}

@media  screen and (max-width: 450px) {
    body{ 
        padding-top: 0px;
        background-image: url(../images/imgban.png);
        background-repeat: no-repeat;
        background-position-x: center;
        background-position-y: 2.3%;
        background-position: fixed;
        background-size: 700px 400px;
    }
}



