body {
    font-family: Arial, sans-serif;
    text-align: center;
}

.blender {
    position: relative;
    width: 200px;
    height: 250px;
    margin: 20px auto;
    background-color: red;
    border: 3px solid goldenrod;
    border-radius: 0 0 20px 20px;
    overflow: hidden;
}

.lid {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 220px;
    height: 25px;
    background-color: blue;
    border-radius: 50%;
    z-index: 10;
}

.container {
    position: relative;
    width: 100%;
    height: 180px;
    background-color: red;
    border: 2px solid red;
}

.base {
    width: 100%;
    height: 50px;
    background-color: goldenrod;
}

.fruit {
    width: 80px;
    height: 80px;
    margin: 10px;
    cursor: pointer;
    border-radius: 5px;
    display: inline-block;
}

button {
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    margin-top: 10px;
}