main{
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    place-items: center;
    width: 100%;
    height: max-content;
    gap: 60px;
}
#P-title{
    position: relative;
    width: 90%;
    height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    place-items: center;
    padding-top: 70px;
    font-family: 'Roboto', sans-serif;
}
#P-title>h1{
    font-size: 55px;
}
#P-title>span{
    color: rgb(92, 92, 92);
    font-size: 18px;
    text-align: center;
}
#products{
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    place-items: center;
    width: 85%;
    height: max-content;
    gap: 40px;
    box-shadow: 0 5px 4px rgba(0, 0, 0, 0.568);
    padding: 4%;
}
.odd-products{
    position: relative;
    display: flex;
    justify-content: center;
    place-items: center;
    height: max-content;
    gap: 2%;
    font-family: 'Roboto', sans-serif;
    transition: transform 0.5s ease;
}
.odd-imgs-div{
    position: relative;
    width: 40%;
    height: 90%;
    border-radius: 3px;
}
.odd-imgs-div>img{
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 3px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.534);
    cursor: pointer;
}
/* image zoom css */
#zoomed-image-container{
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 9999;
    display: none;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.7);
}
#zoomed-image-container img {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-height: 80vh;
    max-width: 80vw;
  }

.odd-desc{
    position: relative;
    width: 70%;
    line-height: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    place-items: start;
    gap: 30px;

}
.odd-desc>span{
    font-size: 40px;
    line-height: 50px;
}
.odd-desc>p{
    font-size: 17px;
}

@media only screen and (max-width: 1200px) {
    #P-title{
        padding-bottom: 10px;
    }
    #products{
        width: 90%;
        gap: 0;
    }
    .odd-products{
        flex-direction: column;
    }
    .odd-imgs-div{
        width: 40%;
        height: 45%;
    }
    .odd-desc{
        place-items: center;
    }
    .odd-desc>span{
        text-align: center;
    }
    .odd-desc>p{
        border-bottom: 2px solid rgb(167, 167, 167);
    }
    #twelfth-product>.odd-desc>p{
        border-bottom: none;
    }
    #second-product, #fourth-product, #sixth-product, #eighth-product, #tenth-product,
     #twelfth-product, #fourteenth-product, #sixteenth-product, #eighteenth-product,
     #twelfth-product, #twelfth-two-product{
        flex-direction: column-reverse;
    }
}

@media only screen and (max-width: 1030px){
    .odd-desc>span{
        width: 110%;
    }
}

@media only screen and (max-width: 920px){
    .odd-imgs-div{
        width: 50%;
    }
    .odd-desc>span{
        width: 120%;
    }
}

@media only screen and (max-width: 820px){
    .odd-imgs-div{
        height: 40%;
    }
    .odd-desc>span{
        width: 135%;
    }
}

@media only screen and (max-width: 730px){
    .odd-imgs-div{
        width: 60%;
        height: 40%;
    }
    .odd-desc>span{
        width: 145%;
    }
}

@media only screen and (max-width: 675px){
    .odd-imgs-div{
        height: 35%;
    }
    .odd-desc>span{
        text-align: center;
        width: 155%;
    }
    #eighth-product{
        margin-bottom: 200px;
    }
}

@media only screen and (max-width: 580px){
    .odd-imgs-div{
        height: 30%;
    }
}

@media only screen and (max-width: 520px){
    .odd-imgs-div{
        width: 65%;
        height: 30%;
    }
}

@media only screen and (max-width: 490px){
    .odd-imgs-div{
        width: 70%;
    }
}

@media only screen and (max-width: 425px){
    .odd-imgs-div{
        width: 75%;
        height: 25%;
    }
}

@media only screen and (max-width: 390px){
    .odd-imgs-div{
        width: 80%;
        height: 20%;
    }
}

@media only screen and (max-width: 350px){
    .odd-imgs-div{
        width: 85%;
    }
}

@media only screen and (max-width: 335px){
    .odd-imgs-div{
        width: 90%;
    }
}