/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
/* Background */
body {
  background: #ffdff2 url("images/bg.gif");
  margin: 0;
  font-family: "Comic Sans MS", Arial, sans-serif;
  color: #333;
}

/* Page Layout */
.wrapper {
  display: flex;
  width: 85%;
  margin: 30px auto;
  gap: 20px;
}

/* Sidebars */
.sidebar {
  width: 220px;
  background: #fff0f8;
  padding: 15px;
  border: 3px dashed #ff8ac4;
  border-radius: 10px;
  text-align: center;
}

.sidebar ul {
  list-style: none;
  padding: 0;
  text-align: left;
}

/* Main Box */
.mainbox {
  flex: 1;
  background: #fffafd;
  padding: 20px;
  border: 4px solid #ff8ac4;
  border-radius: 10px;
  text-align: center;
}

/* Images in a row */
.img-row img {
  width: 120px;
  margin: 5px;
  border: 2px solid #ff8ac4;
  border-radius: 5px;
}

/* Sidebar images */
.side-img {
  width: 150px;
  margin-top: 10px;
}

/* Floating decorations */
.float {
  position: absolute;
  width: 70px;
  opacity: 0.8;
  z-index: 10;
}

.float1 { top: 20px; left: 20px; }
.float2 { top: 200px; right: 20px; }
.float3 { bottom: 30px; left: 45%; }
  