* {
    margin: 0;
    padding: 0 ;
    box-sizing: border-box;
}
body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #607d86;
    
}
.container {
    position: relative;
    top: 50px;

}

.cup{
    position: relative;
    width: 280px;
    height: 300px;
    background: linear-gradient(to right, #f9f9f9, #d9d9d9);
    border-bottom-right-radius: 45%;
    border-bottom-left-radius: 45%;

}
.top{
    position: absolute;    
    width: 100%;
    height: 60px;
    border-radius: 50%;
    top: -30px;
    background: linear-gradient(to right, #f9f9f9, #d9d9d9);
}

.circle {
    position: absolute;
    width: calc(100% - 20px);
    height: 50px;
    top: 5px;
    left: 10px;
    background: linear-gradient(to left, #f9f9f9, #d9d9d9);
    border-radius: 50%; 
    box-sizing: border-box;
    overflow: hidden;
}
.tea{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 20px;
    left: 0;
    background:linear-gradient(#c57e65, #e28462 );
    border-radius: 50% ;
}
.handle{
    position: absolute;
    width: 160px;
    height: 180px;
    border: 25px solid #dcdcdc;
    right: -70px;
    top: 40px;
    border-bottom: 25px solid transparent;
    border-left: 25px solid transparent;
    border-radius: 50%;
    transform: rotate(42deg);
}
.plate{
    position: absolute;
    width: 500px;
    height: 200px;
    border-radius: 50%;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(to right, #f9f9f9, #e7e7e7);
    box-shadow: 0 35px 35px rgba(0, 0, 0, 0.2);
}
.plate::before{
    content: "";
    position: absolute;
    top: 10px;
    bottom: 10px;
    left: 10px;
    right: 10px;
    border-radius: 50%;
    background: linear-gradient(to left, #f9f9f9, #e7e7e7);
    
}
.plate::after {
    content: "";
    position: absolute;
    top: 30px;
    bottom: 30px;
    left: 30px;
    right: 30px;
    background: radial-gradient(rgba(0,0,0,0.2), 25%, transparent,transparent);
    border-radius: 50%;
}



