/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  background: #fbdae8;
  font-family: "Caprasimo", cursive;
  display: flex;
  justify-content: center;
  align-items: center;
}

.center-text {
  font-size: 24px;
  color: #43457f;
  z-index: 1;
  text-shadow: 2px 0 #fbdae8, -2px 0 #fbdae8, 0 2px #fbdae8, 0 -2px #fbdae8, 1px 1px #fbdae8,
    -1px -1px #fbdae8, 1px -1px #fbdae8, -1px 1px #fbdae8;
}

.stripes {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 400px;
  height: 400px;
  overflow: hidden;
  transform-origin: 0 100%;
  transform: rotate(45deg) translate(-50%, 50%);
}

.stripe {
  position: absolute;
  width: 200%;
  height: 40px;
  transform: translateX(-50%);
}

.stripe-1 {
  background: #feda84;
  top: 160px;
}

.stripe-2 {
  background: #ff9b83;
  top: 120px;
}

.stripe-3 {
  background: #976393;
  top: 80px;
}

.stripe-4 {
  background: #685489;
  top: 40px;
}

.stripe-5 {
  background: #43457f;
  top: 0;
}
