*,
::after,
::before {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

body {
    height: 100vh;
    background-color: indianred;
}

.all {
    margin: -80px auto;
    width: 500px;
    height: 500px;
}

.all .top {
    background-color: #adcec3;
    width: 100%;
    height: 250px;
    position: relative;
    border: 2px solid black;
    border-bottom: 2px solid transparent;
    border-radius: 150px 150px 125px 125px;
}

.all .center {
    background-color: #adcec3;
    width: 87%;
    margin: auto;
    height: 170px;
    position: relative;
    top: -34px;
    border-left: 2px solid black;
    border-right: 2px solid black;
}

.all .bootem {
    background-color: #adcec3;
    width: 120%;
    height: 70px;
    position: relative;
    top: -52px;
    left: -10%;
    border: 2px solid black;
    z-index: -1;
    border-radius: 350% 350% 172% 172%;
}

.ey {
    position: absolute;
    width: 65%;
    top: 52%;
    left: 18%;
    z-index: 90;
    display: flex;
    justify-content: space-between;
    height: 180px;
}

.ey .ey1 {
    position: relative;
    width: 50%;
    height: 100%;
    background-color: #f5edbd;
    border: 2px solid black;
    border-radius: 50px;
    z-index: 90;
}

.ey1 .t {
    position: absolute;
    width: 100%;
    height: 50%;
    background-color: #adcec3;
    border-radius: 50px 50px 0 0;
    border-bottom: 2px solid black;
    z-index: 2;
}

.ey1::after {
    position: absolute;
    content: "";
    width: 50%;
    height: 4px;
    background-color: black;
    top: 40%;
    left: 25%;
    z-index: 2;
}

.ey1 .p {
    position: absolute;
    top: 45%;
    left: 38%;
    width: 40px;
    height: 40px;
    z-index: 1;
    background-color: black;
    border-radius: 50%;
}

.ey .ey2 {
    border: 2px solid black;
    border-radius: 50px;
    position: relative;
    width: 50%;
    height: 100%;
    background-color: #f5edbd;
}

.ey2 .t {
    position: absolute;
    width: 100%;
    height: 50%;
    background-color: #adcec3;
    border-radius: 50px 50px 0 0;
    border-bottom: 2px solid black;
    z-index: 2;
}

.ey2::after {
    position: absolute;
    content: "";
    width: 50%;
    height: 4px;
    background-color: black;
    top: 40%;
    z-index: 2;
    left: 25%;
}

.ey2 .p {
    position: absolute;
    top: 45%;
    left: 38%;
    width: 40px;
    height: 40px;
    z-index: 1;
    background-color: black;
    border-radius: 50%;
}

.head .topH {
    position: relative;
    z-index: 54;
    top: 100px;
    width: 100%;
    height: 100px;
}

.topH span {
    position: absolute;
}

.topH span:nth-of-type(1) {
    top: 50%;
    left: 10%;
    background-color: #333;
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.topH span:nth-of-type(2) {
    top: 20%;
    left: 20%;
    background-color: #333;
    width: 11px;
    height: 11px;
    border-radius: 50%;
}

.topH span:nth-of-type(3) {
    top: 25%;
    left: 25%;
    background-color: #333;
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.topH span:nth-of-type(4) {
    top: 5%;
    left: 40%;
    background-color: #333;
    width: 7px;
    height: 7px;
    border-radius: 50%;
}

.topH span:nth-of-type(5) {
    top: 25%;
    left: 45%;
    background-color: #333;
    width: 13px;
    height: 10px;
    border-radius: 50%;
}

.topH span:nth-of-type(6) {
    top: 40%;
    right: 30%;
    background-color: #333;
    width: 12px;
    height: 10px;
    border-radius: 50%;
}

.topH span:nth-of-type(7) {
    top: 20%;
    right: 20%;
    background-color: #333;
    width: 5px;
    height: 5px;
    border-radius: 50%;
}

.topH span:nth-of-type(8) {
    top: 70%;
    right: 10%;
    background-color: #333;
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.center .nose {
    position: relative;
    width: 50%;
    left: 25%;
    top: 50%;
    height: 340px;
    background-color: #adcec3;
    border: 2px solid black;
    border-radius: 50%;
}

.center .nose .l {
    position: absolute;
    top: -14px;
    left: 14%;
    width: 50%;
    height: 140px;
    background-color: #adcec3;
    border-left: 2px solid black;
    transform: rotate(23deg);
    z-index: 50;
}

.center .nose .r {
    position: absolute;
    top: -14px;
    right: 13%;
    width: 39%;
    height: 140px;
    background-color: #adcec3;
    border-right: 2px solid black;
    transform: rotate(-22deg);
    z-index: 50;
}

.bootem .mouse {
    position: relative;
    width: 90%;
    left: 5%;
    top: 60%;
    height: 5px;
    background-color: black;
    z-index: 40;
}

.mouse::before {
    content: "";
    position: absolute;
    left: 0;
    top: -15px;
    height: 30px;
    width: 5px;
    background-color: black;
    border-radius: 10px 0 0 20px;
}

.mouse::after {
    content: "";
    position: absolute;
    right: 0;
    top: -15px;
    height: 30px;
    width: 5px;
    background-color: black;
    border-radius: 0 20px 20px 0;
}

.res {
    position: absolute;
    bottom: 0;
    left: 47%;
    width: 100px;
    height: 300px;
    background-color: #adcec3;
    z-index: -1;
    border: 2px solid black;
    border-bottom: 30px solid rgb(26, 26, 26);
}