/* 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-color: #fff0f5;
  font-family: "Comic Sans MS";
}

/* container controls layout */
.container {
  display: flex;
  gap: 15px;
}

/* sidebar */
.sidebar {
  width: 150px;
  background: #ffd6ec;
  padding: 10px;
  border: 2px dashed pink;
}

/* main section (holds boxes) */
.main {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* boxes */
.box {
  width: 180px;
  border: 2px solid pink;
  border-radius: 10px;
  padding: 10px;
  text-align: center;
  word-wrap: break-word;
  min-height: 80 px;
}

/* FIXES YOUR LIST ISSUE */
.box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.box li {
  margin: 5px 0;
}
/* gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5px;
}

 .gallery img {
   width: 100%
   border-radius: 5px;
 }