@import url("https://fonts.googleapis.com/css2?family=Tiny5&display=swap");
* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  padding: 24px;
  color: #222;
  background-color: #ececec;
  font-family: "Tiny5", sans-serif;
  font-smoothing: antialiased;
  display: flex;
  justify-content: center;
  align-items: center;
}

svg {
  width: 0;
  height: 0;
}

.wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.text {
  color: pink;
  text-align: center;
  font-size: 48px;
  filter: url("#sticker");
}

.face {
  --face-w: 200px;
  --face-h: calc(var(--face-w) * 0.9);
  width: var(--face-w);
  height: var(--face-h);
  margin-top: calc(var(--face-h) * -0.5);
  border-radius: 50%;
  background-image: linear-gradient(transparent 50%, #ced1f4 0);
}

.eyes {
  translate: 0 calc(var(--face-h) * 0.55);
  position: relative;
  display: flex;
  justify-content: center;
  gap: 4px;
}

.eye {
  width: calc(var(--face-w) * 0.2);
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
.eye:before {
  content: "";
  width: 35%;
  aspect-ratio: 1/1;
  background-color: #222;
  border-radius: 50%;
  translate: 100% 0;
}