*{
    margin: 0;
    box-sizing: border-box;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
img{
    max-width: 100%;
    height: auto;
    vertical-align: middle;
    width:130px;
    margin-right: 5px;
}
span , a , title {
    display: inline-block;
    text-decoration: none;
}
.big{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin: 50px 0;
}
.fruit{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 20px 0;
}
.title{
    text-align: center;
}
.p{
    font-weight: bold;
}
.icon{
    color: orange;
}
.icon1{
    color: gray;
}
.green{
    font-size: 20px;
    color: lime;
}
.gray{
    font-size: 16px;
    color: lightslategray;
    padding-left: 5px;
    text-decoration:line-through;
}
.line{
    height: 2px;
    background-image: linear-gradient(
        90deg,
        lime 0 50%,
        gray 50% 100%
    );
    margin: 10px 0;
}