* {
    margin: 0;
    padding: 0;
}

.product-logo {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
}

.heading h1 {
    font-size: 2rem;
    margin-left: 0.5rem;
    color: #2d3968;
    margin-bottom: 4px;
}


.products {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
}

.products-card {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    gap: 20px;
}

.prod-card {
    border-radius: 15px;
    padding: 30px 30px 30px 30px;
    background-color: #2d3968;
    position: relative;
}

.prod-card>img {
    border-radius: 15px;
}

.prod-card>p {
    color: #ebebeb;
    text-align: center;
    font-family: Raleway;
}

.table-container {
    border: 2px solid black;
    text-align: center;
    margin: 0 auto;
    margin-top: 20px;
    width: 50%;
}

table,
th,
td {
    border: 1px solid black;
    border-collapse: collapse;
    font-size: 18px;
}

@media(max-width:550px) {
    .table-container {
        width: 90%;
    }
}