@import url('https://fonts.googleapis.com/css2?family=Barlow: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&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('about.css');
@import url('customers.css');
@import url('explanation.css');
@import url('footer.css');
@import url('header.css');
@import url('home.css');

* {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body {
    background: linear-gradient(100deg, #8B0000, #000000) !important;
    color: white;
    font-family: 'Poppins', sans-serif;
}

.btn-default {
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    color:rgba(113, 0, 0, 1);
    border-radius: 6px;
    padding: 10px 14px;
    font-weight: 600;
    box-shadow: 0px 0px 10px 2px rgb(192, 16, 16);
    cursor: pointer;
    transition: background-color .3 ease;
}

.btn-default:hover {
    background-color: rgb(238, 231, 231);
}

#banner {
    display: flex;
    align-items: start;
    justify-content: end;
    width: 70%;
}

#banner img{
    height: 100%;
    width: fit-content;
}

html {
    scroll-behavior: smooth !important;
}