/* initial setup */
* {
  box-sizing: border-box;
}

.container-body {
  padding-bottom: 400px;
  font-family: Cambria, Cochin, Georgia, Times, "Times New Roman", serif;
}

/* formatting the header image */
.jumbotron {
  border: solid 1px black;
  margin: auto;
  margin-top: 45px;
  margin-bottom: 30px;
  position: relative;
  background: white url("../images/wreath.png") center center;
  width: 100%;
  height: 300px;
  background-size: cover;
  overflow: hidden;
}

h1 {
  text-align: center;
}

/* formatting the vegetable images */
.vegetable-container {
  margin: 30px;
}

.draggable-images {
  display: flex;
  flex-flow: wrap;
  justify-content: center;
  margin-bottom: 30px;
  margin-top: 30px;
}

.draggable-images img {
  max-height: 100px;
  max-width: 100px;
  padding: 10px;
}

#dragged-image,
#dropped-image {
  max-height: 100px;
  max-width: 100px;
  padding: 10px;
}

.garden-container {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}

.square {
  width: 100px;
  height: 100px;
  background-color: white;
  border: solid 1px black;
  display: flex;
  justify-content: center;
  align-items: center;
}

.square img {
  max-width: 80px;
  max-height: 80px;
  padding: 10px;
}

#sidebar {
  border: dotted 3px #fffef3;
  background-color: #d4d8cd;
  float: left;
  padding: 20px;
}

#site-instructions {
  text-align: center;
  font-family: courier new;
  padding-left: 80px;
  padding-right: 80px;
}

table {
  float: center;
}

#div1,
#div2,
#div3,
#div4,
#div5,
#div6,
#div7,
#div8,
#div9,
#div10,
#div11,
#div12,
#div13,
#div14,
#div15,
#div16,
#div17,
#div18 {
  width: 150px;
  height: 150px;
}

body {
  padding-left: 30px;
  padding-right: 30px;
  border: solid 50px #33659a;
  padding-bottom: 1000px;
}
