* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

section {
    display: flex;
    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: 900px;
    margin: 20px auto;
    border: 2px solid black;
}

table,
th,
td {
    border: 1px solid black;
    border-collapse: collapse;
    font-size: 20px;
}

.image-container {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 50px;

}

.image-container img {
    width: 300px;
    height: 200px;
    border-radius: 5px;
}