<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@import url("https://fonts.googleapis.com/css2?family=Orelega+One&amp;display=swap");
* {
  padding: 0;
  margin: 0;
}

:root {
  --egg: white;
  --egg-shadow: #e3e3e3;
  --crack: #adadad;
  --chick: #ffde7a;
  --orange: #f3943d;
}

body {
  background: #8ac1ff;
  font-family: "Orelega One", cursive;
}

.container {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.art-container {
  position: relative;
  height: 300px;
  width: 300px;
  margin: auto;
  margin-bottom: 1.5rem;
}

.egg {
  position: absolute;
  background: var(--egg);
  width: 65%;
  height: 85%;
  border-radius: 50% 50% 50% 50%/60% 60% 40% 40%;
  bottom: 5%;
  left: 17.5%;
  box-shadow: inset 0px -20px 0px 0px var(--egg-shadow);
}

.egg::after {
  position: absolute;
  content: "";
  width: 84%;
  height: 17%;
  background: #5b7da3;
  border-radius: 50%;
  bottom: -10%;
  z-index: -1;
  left: 8%;
}

.crack {
  position: absolute;
  background: var(--crack);
  height: 2px;
  width: 15%;
  transform: rotate(23deg);
  top: 35%;
  left: 22.5%;
}

.crack::after {
  position: absolute;
  content: "";
  height: 2px;
  background: var(--crack);
  width: 90%;
  left: 75%;
  bottom: 500%;
  transform: rotate(-50deg);
}

.crack::before {
  position: absolute;
  content: "";
  height: 2px;
  background: var(--crack);
  width: 90%;
  left: 140%;
  bottom: 1000%;
  transform: rotate(2deg);
}

.chick {
  position: absolute;
  width: 64%;
  height: 80%;
  background: var(--chick);
  border-radius: 50% 50% 50% 50%/60% 60% 40% 40%;
  left: 18%;
  bottom: 15%;
}

.chick::after {
  position: absolute;
  content: "";
  width: 84%;
  height: 17%;
  background: #5b7da3;
  border-radius: 50%;
  bottom: -20%;
  z-index: -2;
  left: 8%;
}

.eye {
  position: absolute;
  width: 10%;
  height: 8%;
  background: #2e2e2e;
  border-radius: 50%;
}

.left-eye {
  left: 22%;
  top: 25%;
}

.right-eye {
  left: 47%;
  top: 25%;
}

.eye::after {
  position: absolute;
  content: "";
  width: 40%;
  height: 40%;
  background: white;
  border-radius: 50%;
  left: 15%;
  top: 10%;
}

.beak {
  position: absolute;
  width: 12%;
  height: 12%;
  clip-path: polygon(63% 0, 0 81%, 100% 81%);
  background: var(--orange);
  top: 35%;
  left: 30%;
  transform: rotate(10deg);
}

.leg {
  position: absolute;
  height: 25%;
  width: 5%;
  background: var(--orange);
  bottom: -15%;
  border-radius: 20px;
  z-index: -1;
}

.leg-left {
  left: 30%;
}

.leg-right {
  left: 65%;
}

.leg::after {
  position: absolute;
  content: "";
  width: 80%;
  height: 50%;
  background: var(--orange);
  left: -80%;
  transform: rotate(35deg);
  border-radius: 20px;
  bottom: 0;
}

.leg::before {
  position: absolute;
  content: "";
  width: 80%;
  height: 50%;
  background: var(--orange);
  left: 90%;
  transform: rotate(-35deg);
  border-radius: 20px;
  bottom: 0;
}

a {
  color: white;
  text-decoration: none;
  font-size: 1.8rem;
  text-shadow: 0 0 1px #4c6787, 0 0 1px #4c6787, 0 0 2px #4c6787;
}

a:hover {
  color: var(--chick);
}

a:hover {
  transition: color 200ms;
}

.hair {
  position: absolute;
  width: 15%;
  height: 18%;
  background: var(--chick);
  border-radius: 0% 100% 34% 66%/0% 66% 34% 100%;
  left: 35%;
  top: -11%;
}

.hair::after {
  position: absolute;
  content: "";
  width: 70%;
  height: 70%;
  background: var(--chick);
  border-radius: 100% 0% 67% 33%/67% 0% 100% 33%;
  top: 15%;
  left: 80%;
}

.sound {
  position: absolute;
  color: #4c6787;
}

.s1 {
  top: 0;
  left: -10%;
  font-size: 1rem;
  transform: rotate(-10deg);
}

.s2 {
  top: 15%;
  left: -3%;
  font-size: 1.2rem;
  transform: rotate(10deg);
}</pre></body></html>