* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    height: 100%;
    font-family: 'Arial', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #FF6347, #FF4500);
}

.container {
    text-align: center;
}

h1 {
    font-size: 3em;
    color: white;
}

p {
    font-size: 1.2em;
    color: white;
}

.farm {
    position: relative;
    width: 100%;
    height: 150px;
    margin-top: 20px;
    overflow: hidden;
    background: #4CAF50;
}

.tomatoes {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 30px;
    height: 30px;
    background: red;
    border-radius: 50%;
    animation: growTomatoes 4s infinite ease-in-out;
}

.machine {
    position: relative;
    width: 100%;
    height: 150px;
    margin-top: 40px;
    overflow: hidden;
    background: #333;
    padding: 20px;
}

.bottles {
    display: flex;
    justify-content: space-around;
}

.bottle {
    width: 50px;
    height: 120px;
    background: white;
    position: relative;
    border-radius: 10px;
}

.bottle:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 0;
    background: red;
    animation: fillBottle 4s infinite ease-in-out;
    border-radius: 10px 10px 0 0;
}

.message {
    margin-top: 20px;
    color: white;
    font-style: italic;
}

@keyframes growTomatoes {
    0% {
        transform: translate(-50%, 100%) scale(0);
    }
    50% {
        transform: translate(-50%, 0) scale(1);
    }
    100% {
        transform: translate(-50%, 100%) scale(0);
    }
}

@keyframes fillBottle {
    0% {
        height: 0;
    }
    50% {
        height: 100%;
    }
    100% {
        height: 0;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2em;
    }

    p {
        font-size: 1em;
    }

    .bottle {
        width: 40px;
        height: 100px;
    }
}
