* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


.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 {
    width: 75%;
    margin: 20px auto;
    border: 2px solid black;
}

table,
th,
td {
    border: 1px solid black;
    border-collapse: collapse;
}

table .description {
    text-align: center;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    align-items: center;
    grid-gap: 15px;
    margin: 50px 50px 100px;

}

.gallery img {
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.3);
    border: 5px solid aliceblue;
}

@media(max-width:460px) {
    .table-container {
        width: 90%;
    }
}