body {
  background: url("yellowtiles.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: #7E2811;
  font-family: Georgia,serif;
  text-align: center;
  cursor: url("snailcursor.GIF"), auto;
}

h1 { 
  color: #E45E9D;
  text-align: center;
  margin-top: 100px;
}

.back-button { 
  display: inline-block;
  margin: 20px;
  padding: 10px 20px;
  background-color: #ffd6cc;
  color: #5a3d3d;
  border: 2px solid #ffb6a6;
  border-radius: 20px;
  text-decoration: none;
  font-family: "Trebuchet MS", Sans-Serif;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 2px 2px 6px rgba(0,0,0,0.1);
}

.back-button:hover {
  background-color: #ffb6a6;
  border-color: #ff8c69;
  color: #fff;
}

/* ✿ Crafts Section ✿ */
#crafts {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-top: 60px;
}

.craft-box {
  border: 2px dotted #F283AE; /* Pink Tulip */
  border-radius: 12px;
  padding: 20px;
  width: 250px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.craft-box:hover {
  transform: scale(1.03);
}

#paintings {
  border-color: #C59FBE;
  top: 60px;
  left: 120px;
  width: 230px;
  height: 180px;
}

#bracelets {
  border-color: #98b8b9;
  top: 300px;
  left: 400px;
  width: 160px;
  height: 160px;
}

#clay {
  border-color: #FAC1B5;
  top: 550px;
  left: 180px;
  width: 200px;
}

#felt {
  border-color: #c6c870;
  top: 550px;
  left: 700px;
  width: 240px;
  height: 190px;
}

#misc {
  border-color: #F283AE;
  top: 700px;
  left: 700px;
  width: 210px;
  height: 180px;
}

.craft-box h2 {
  color: #E45E9D;
  margin-bottom: 15px;
  font-size: 1.5em;
  text-shadow: 1px 1px #FAC1B5;
}

.craft-items img {
  width: 90px;
  height: auto;
  margin: 8px;
  border-radius: 8px;
  border: 2px solid #C59FBE; /* Lavender */
}






