.bagel {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 500px;
height: 500px;
animation: breath 1s infinite alternate;
z-index: 2;
} .dough {
position: absolute;
width: 500px;
height: 500px;
border-radius: 50%;
background-color: sandybrown;
background-image: radial-gradient(#a15608,#fddfa3);
}
.hole {
position: absolute;
left: 200px;
top: 200px;
width: 100px;
height: 100px;
border-radius: 50%;
background-color: white;
}