body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-size: cover;
    flex-direction: column;
    transition: background-image 1s ease-in-out;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.website-name {
    font-size: 36px;
    font-weight: bold;
    color: #6e4601;
    margin-bottom: 20px;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 10px 20px;
    border-radius: 10px;
}

.bottle {
    position: relative;
    width: 60px;
    margin-bottom: 20px; /* Space between bottle and text */
}

.bottle-neck {
    width: 20px;
    height: 40px;
    background-color: #fff;
    border: 3px solid #000;
    border-radius: 10px;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

.bottle-body {
    width: 100px;
    height: 200px;
    background-color: #fff;
    border: 5px solid #000;
    border-radius: 50px 50px 10px 10px;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    overflow: hidden;
}

.oil {
    width: 100%;
    height: 0;
    background-color: #ffd700;
    position: absolute;
    bottom: 0;
}

.bottle-label {
    position: absolute;
    width: 100%;
    bottom: 50%;
    text-align: center;
    font-weight: bold;
    color: #000;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 5px 0;
    border-radius: 5px;
}

.coming-soon {
    font-size: 24px;
    font-weight: bold;
    color: #000;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 10px 20px;
    border-radius: 10px;
}
