body {
  margin: 0;
  font-family: 'Short Stack', cursive;
  background: url("Bg4.png") repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
]


.main {
  width: 500px;
  background: #fff7fc;
  border: 2px solid #f7cfe5;
  border-radius: 20px;
  padding: 25px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.layout {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
  margin-top: 60px;
}

.box {
  background: #fff7fc;
  border: 2px solid #f3c3dd;
  border-radius: 15px;
  padding: 15px;
  width: 180px;
  box-shadow: 0 5px 10px rgba(0,0,0,0.1);
}

.main-box {
  width: 300px;
  text-align: center;
}

.box a {
  display: block;
  background: #fde4f8;
  padding: 6px;
  margin: 5px 0;
  border-radius: 8px;
  text-decoration: none;
  color: #7a5c7a;
  transition: 0.2s;
}

.box a:hover {
  background: #ffe9f6;
  transform: translateY(-2px);
}
.box {
  background: #fff7fc;
  border: 2px solid #f3c3dd;
  border-radius: 15px;
  padding: 15px;
  position: relative;

  /* soft shadow */
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.box::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 20px;
  pointer-events: none;

  background: repeating-linear-gradient(
    45deg,
    #ffd6ec,
    #ffd6ec 6px,
    transparent 6px,
    transparent 12px
  );

  opacity: 0.4;
  z-index: -1;
}

.box {
  background: #fff7fc;
  border: 2px solid #f3c3dd;
  border-radius: 15px;
  padding: 15px;

  box-shadow:
    0 8px 20px rgba(0,0,0,0.1),
    inset 0 0 15px rgba(255, 200, 230, 0.3);
}

.box h3 {
  text-align: center;
  color: #c97bb0;
  margin-bottom: 10px;
  font-family: 'Indie Flower', cursive;
}

.box h3::after {
  content: " ✧ ⋆ ♡ ⋆ ✧ ";
  display: block;
  font-size: 0.8em;
  opacity: 0.6;
}

.box a {
  display: block;
  background: #fde4f8;
  padding: 6px;
  margin: 6px 0;
  border-radius: 10px;
  text-decoration: none;
  color: #7a5c7a;
  text-align: center;

  transition: 0.2s;
}

.box a:hover {
  background: #ffe9f6;
  transform: scale(1.05);
}