main {
    padding: 50px;
    margin-top: 90px;
    width: 100%;
}

.main-title {
    margin-bottom: 50px;
}

.main-title h1 {
    font-size: 2.5rem;
    text-align: center;
}

.products {
    width: 80%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-gap: 100px;
    place-items: center;
}

.product-image {
    position: relative;
}

.product-image p {
    position: absolute;
    top: 0;
    left: 0;
    background-color: #00ffff;
    color: #000000;
    font-weight: bold;
    padding: 10px 20px;
}

.product-image img {
    width: 350px;
    height: 350px;
    object-fit: contain;
}

.product-info h2 {
    margin: 15px 0 5px 0;
}