body {
  background-color: rgb(72, 80, 87);
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 400px;
  width: 400px;
}

.window-container {
  position: absolute;
  left: 25px;
  top: 25px;
  height: 400px;
  width: 300px;
  background-color: rgb(192, 110, 173);
  border: 12px solid rgb(71, 65, 65);
}

.horizontal-frame {
  height: 10px;
  width: 300px;
  background-color: rgb(71, 65, 65);
  position: absolute;
  top: 200px;
}

.moon-container {
  height: 100px;
  width: 100px;
  background: transparent;
  background-color: rgb(218, 208, 105);
  border-radius: 50%;
  position: absolute;
  top: 40px;
  left: 30px;
  transform: rotate(-20deg);
}
.moon {
  background-color: rgb(192, 110, 173);
  height: 100px;
  width: 100px;
  border-radius: 50%;
  position: absolute;
  left: 30px;
}

.star1,
.star2,
.star3,
.star4,
.star5,
.star7,
.star6 {
  height: 8px;
  width: 8px;
  background-color: rgb(219, 214, 159);
  border-radius: 50%;
  box-shadow: silver;
  position: absolute;
}

.star1 {
  top: 50px;
  left: 250px;
}

.star2 {
  top: 70px;
  left: 150px;
}

.star3 {
  top: 300px;
  left: 100px;
}

.star4 {
  top: 150px;
  left: 250px;
}

.star5 {
  top: 170px;
  left: 40px;
}

.star6 {
  top: 270px;
  left: 230px;
}

.star7 {
  left: 20px;
  top: 20px;
}

.cat {
  position: absolute;
  top: 250px;
  left: 200px;
  height: 150px;
  width: 70px;
  border-top-left-radius: 20%;
  border-top-right-radius: 20%;
  background-color: rgb(48, 42, 65);
}

.ears {
  position: absolute;
  top: -15px;
  height: 0px;
  width: 0px;
  border-bottom: 20px solid rgb(48, 42, 65);
  border-right: 10px solid transparent;
  border-left: 10px solid transparent;
}

#ear1 {
  left: 6px;
}

#ear2 {
  left: 43px;
}

.butt {
  width: 100px;
  height: 90px;
  background-color: rgb(48, 42, 65);
  border-radius: 70%;
  position: absolute;
  top: 60px;
  right: -40px;
}

.tail {
  width: 15px;
  height: 70px;
  background-color: rgb(48, 42, 65);
  position: absolute;
  top: 140px;
  left: 65px;
  transform-origin: 100% 0;
  transform: rotate(-40deg);
  border-bottom: 12px solid rgb(169, 171, 207);
  border-bottom-left-radius: 30%;
  border-bottom-right-radius: 30%;
  animation: tail 4s infinite;
}

@keyframes tail {
  50% {
    transform: rotate(10deg);
  }
}

.mountain-container {
  height: 0;
  width: 0;
  border-bottom: 60px solid rgb(119, 73, 108);
  border-right: 30px solid transparent;
  border-left: 30px solid transparent;
  position: absolute;
  bottom: 0;
  display: flex;
  justify-content: space-between;
  left: 0px;
}

.mt1,
.mt2,
.mt3,
.mt4,
.mt5 {
  border-bottom: 60px solid rgb(87, 48, 78);
  border-right: 20px solid transparent;
  border-left: 30px solid transparent;
}
