* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    font-family: Arial, sans-serif;
}

.Content {
    position: relative;
    width: 600px;
    height: 500px;
    background-color: white;
    margin: 0 auto;
}

.teapot-knob {
    position: absolute;
    left: 47.5%;
    top: 24%;
    width: 15px;
    height: 15px;
    background-color: #d61c45;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.teapot-lid {
    position: absolute;
    left: 47%;
    top: 32%;
    width: 100px;
    height: 80px;
    background: radial-gradient(ellipse at 65% 45%, #db1d41 35%, #ffffff 65%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.teapot-handle-outline {
    position: absolute;
    left: 58%;
    top: 40%;
    width: 65px;
    height: 65px;
    border: 7px solid #d9738b;
    border-radius: 50%;
    background: transparent;
    transform: translate(-50%, -50%);
}

.teapot-spout {
    position: absolute;
    left: 35%;
    top: 36%;
    width: 60px;
    height: 15px;
    background-color: #e42146;
    transform: translate(-50%, -50%) rotate(30deg);
    border-radius: 2px;
}

.teapot-body {
    position: absolute;
    left: 47.5%;
    top: 42.5%;
    width: 150px;
    height: 120px;
    background: radial-gradient(ellipse at 25% 35%, #ffffff 5%, #db1d41 80%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.table-top {
    position: absolute;
    left: 25%;
    top: 54%;
    width: 275px;
    height: 25px;
    background-color: #d6722d;
    border-radius: 2px;
    transform: translateY(-50%);
}

.table-base-polygon {
    position: absolute;
    left: 48.5%;
    top: 75%;
    width: 100px;
    height: 100px;
    background-color: #d2732e;
    clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
    transform: translate(-50%, 0);
}

.table-base-ellipse {
    position: absolute;
    left: 48.5%;
    top: 68%;
    width: 50px;
    height: 150px;
    background-color: #d2732e;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.chair-left-seat {
    position: absolute;
    left: 10%;
    top: 71%;
    width: 100px;
    height: 25px;
    background-color: #d07834;
    transform: translateY(-50%);
}

.chair-left-leg1 {
    position: absolute;
    left: 22%;
    top: 70%;
    width: 15px;
    height: 120px;
    background-color: #d07834;
}

.chair-left-dot1 {
    position: absolute;
    left: 12.5%;
    top: 71%;
    width: 10px;
    height: 10px;
    background-color: #833700;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.chair-left-dot2 {
    position: absolute;
    left: 17%;
    top: 71%;
    width: 10px;
    height: 10px;
    background-color: #833700;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.chair-left-dot3 {
    position: absolute;
    left: 21.5%;
    top: 71%;
    width: 10px;
    height: 10px;
    background-color: #833700;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.chair-left-back {
    position: absolute;
    left: 3%;
    top: 68%;
    width: 85px;
    height: 250px;
    background-color: #d2732e;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.chair-left-back-cutout {
    position: absolute;
    left: 1.5%;
    top: 68%;
    width: 85px;
    height: 245px;
    background-color: #ffffff;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.chair-right-seat {
    position: absolute;
    left: 70%;
    top: 71%;
    width: 100px;
    height: 25px;
    background-color: #d07834;
    transform: translateY(-50%);
}

.chair-right-leg1 {
    position: absolute;
    left: 72%;
    top: 70%;
    width: 15px;
    height: 120px;
    background-color: #d07834;
}

.chair-right-dot1 {
    position: absolute;
    left: 72.5%;
    top: 71%;
    width: 10px;
    height: 10px;
    background-color: #833700;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.chair-right-dot2 {
    position: absolute;
    left: 77.5%;
    top: 71%;
    width: 10px;
    height: 10px;
    background-color: #833700;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.chair-right-dot3 {
    position: absolute;
    left: 82.5%;
    top: 71%;
    width: 10px;
    height: 10px;
    background-color: #833700;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.chair-right-back {
    position: absolute;
    left: 93%;
    top: 68%;
    width: 85px;
    height: 250px;
    background-color: #d2732e;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.chair-right-back-cutout {
    position: absolute;
    left: 94.5%;
    top: 68%;
    width: 85px;
    height: 250px;
    background-color: #ffffff;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}
