.mainContent {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 5px;
}

.con {
    max-width: 750px;
    width: 100%;
    margin-bottom: 25px;
    margin-top: 65px;
}

.pro {
    width: 100%;
}

.items {
    border: solid 2px #fff;
    text-align: center;
    padding: 0 10px;
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 10px;
    background: rgba(255, 255, 255, 0.71);
}

.items img {
    max-width: 250px;
    height: 250px;
    padding: 10px 0;
}

.items ul {
    margin-left: 10px;
    text-align: left;
    height: 100px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 100%;
}

.buy {
    border: solid 2px #000;
    padding: 5px;
    text-decoration: none;
    background-color: yellow;
    color: #000;
    transition: transform 0.3s ease-in-out;
}

.buy:hover {
    box-shadow: #FBB117 5px 5px, 
    #000 5px 5px 5px 2px;
    transform: scale(1.2);
}

.buy svg {
    width: 15px;
}

@media only screen and (max-width: 600px) {
    .items {
        flex-direction: column;
    }

    .items ul{
        margin-left: 0;
        text-align: center;
        width: 100%;
    }
}

@media only screen and (max-width: 300px) {
    .con {
        margin-bottom: 40px;
    }
}


