body {
  margin: 0;
  padding: 0;
  background: linear-gradient(to bottom, #aee2ff, #e0f7ff);
  font-family: "Comic Sans MS", cursive, sans-serif;
  color: #333;
  overflow-x: hidden;
  position: relative;
}
#container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.85);
  border-radius: 20px;
  box-shadow: 0 0 20px rgba(0,0,0,0.1);
  animation: aparecer 1.2s ease-in-out;
}
h1, h2, h3 {
  text-align: center;
  color: #4a90e2;
  text-shadow: 1px 1px 1px white;
}
p {
  padding: 15px;
  background: #ffffffb0;
  border-left: 5px solid #7ed6df;
  border-radius: 10px;
  margin: 15px 0;
  box-shadow: 2px 2px 8px rgba(0,0,0,0.05);
}
a {
  color: #2c82c9;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}
a:hover {
  color: #ffffff;
  background: #2c82c9;
  padding: 4px 8px;
  border-radius: 6px;
}
@keyframes aparecer {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
.cloud {
  position: absolute;
  width: 200px;
  height: 120px;
  background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 640 512" fill="white" xmlns="http://www.w3.org/2000/svg"><path d="M537.6 226.6C519.5 143.4 448.5 80 368 80c-53.5 0-101.1 28.6-126.5 71.8C225.2 138.6 192 160 160 160c-53 0-96 43-96 96 0 9.5 1.4 18.7 4.1 27.4C27.4 294.7 0 330.3 0 372c0 61.9 50.1 112 112 112h400c70.7 0 128-57.3 128-128 0-66.3-51.2-120.6-114.4-129.4z"/></svg>');
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.6;
  animation: moverNuvem 60s linear infinite;
}
#extraDiv1 { top: 5%; left: -200px; animation-delay: 0s; }
#extraDiv2 { top: 20%; left: -300px; animation-delay: 10s; }
#extraDiv3 { top: 35%; left: -250px; animation-delay: 20s; }
#extraDiv4 { top: 50%; left: -220px; animation-delay: 30s; }
#extraDiv5 { top: 65%; left: -180px; animation-delay: 40s; }
#extraDiv6 { top: 75%; left: -300px; animation-delay: 50s; }
@keyframes moverNuvem {
  0% { transform: translateX(0); }
  100% { transform: translateX(150vw); }
}
.sidebar {
  background: rgba(255, 255, 255, 0.9);
  border-left: 4px dashed #74b9ff;
  padding: 15px;
  border-radius: 10px;
  margin-top: 20px;
  animation: aparecer 1.4s ease-in-out;
}
.design-name {
  display: inline-block;
  background: #81ecec;
  padding: 6px 12px;
  margin: 5px 0;
  border-radius: 12px;
  transition: all 0.3s ease;
}
.design-name:hover {
  background: #00cec9;
  color: white;
}
#jar-footer {
  text-align: center;
  padding: 20px;
  font-size: 0.9em;
  color: #444;
  margin-top: 40px;
  animation: aparecer 1.5s ease-in-out;
}