* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* font-family: 'Poppins', sans-serif; */
    /* color: #100F3D; */
    font-family: bahnschrift;
    list-style: none;
    text-decoration: none;
    /* font-weight: bold;
    text-align: center; */
}


h1,
h2,
h3,
h4,
h5 {
    color: #100F3D;
}

section {
    margin-top: 1rem;
    /* overflow: hidden; */
}

#products h3 {
    font-weight: 700;
    text-align: center;
}

.card-body .price {
    color: #F57224;
    text-align: center;
    font-family: bahnschrift;
    font-weight: bold;
}

.cards {
    display: grid;
    place-items: center;
}

.card {
    margin: 0 10px;
}

footer {
    background-color: #100F3D;
    color: white;
    padding: 4%;
    /* overflow: hidden; */
    height: 40vh;
    align-items: center;
}

.footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

footer h5,
footer h4 {
    color: white;
}

.footer-left {
    width: 50%;
    text-align: justify;
}

.footer-right {
    width: 50%;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.copy-right {
    display: grid;
    place-items: center;
    bottom: -10px;
}

#cart {
    padding: 6%;
}

#cart .card {
    width: 100%;
}

#cart .card-body {
    display: flex;
    justify-content: space-between;
}

#contact .card{
    margin: 1% 6%;
}

#login .heading{
    text-align: center;
    margin-bottom: 2rem;
    color: #100F3D;
    line-height: 1.7;
}
#login .card{
    /* margin: 2% 30%; */
    padding: 4%;
    left: 50%;
    top: 50%;
    transform: translateX(-50%);
    text-align: start;
    width: 35vw;
}

@media screen and (max-width: 600px) {

    #products .card{
        margin-bottom: 8%;
    }
    footer {
        height: 50vh;
        text-align: center;
    }

    .footer {
        flex-direction: column;
    }

    .footer-left,
    .footer-right {
        width: 100%;
        text-align: center;
    }

    #cart .card-body {
        text-align: center;
        flex-direction: column;
    }

    #login .card{
        margin: 0;
        left: 50%;
        top: 50%;
        transform: translateX(-50%);
        width: 100vw;
    }
}