Загрузка данных


#wrapper{
    position: relative;
    width: 500px;
    height: 500px;
    margin: 0 auto;
    border-radius: 50%;
    background-color: rgb(255, 252, 104);
}

/* левый глаз */
#elem1{
    background-color: rgb(255, 255, 255);
    position: absolute;
    left: 70px;
    top: 110px;
    width: 90px;
    height: 90px;
    border-radius: 50%;
}

/* правый глаз */
#elem2{
    background-color: rgb(255, 255, 255);
    position: absolute;
    left: 290px;
    top: 110px;
    width: 90px;
    height: 90px;
    border-radius: 50%;
}

/* нос */
#elem3{
    background-color: rgb(255, 255, 255);
    position: absolute;
    left: 205px;
    top: 240px;
    width: 70px;
    height: 70px;
    border-radius: 50%;
}

/* белая основа улыбки */
#elem4{
    background-color: rgb(255, 255, 255);
    position: absolute;
    left: 140px;
    top: 340px;
    width: 220px;
    height: 110px;
    border-radius: 0 0 110px 110px;
    z-index: 1;
}

/* жёлтая накладка сверху */
#elem5{
    background-color: rgb(255, 252, 104);
    position: absolute;
    left: 140px;
    top: 310px; /* подними выше */
    width: 220px;
    height: 110px;
    border-radius: 0 0 110px 110px;
    z-index: 2;
}