.box {
  height: 150px;
  width: 150px;
  border-radius: 10px;
  cursor: pointer;
}

body {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

#header {
  background-color: wheat;
  border: 2px solid;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 200px;
  width: 400px;
  margin: 20px;
  padding: 10px;
}

#controlBar {
  display: flex;
  justify-content: space-around;
  width: 200px;
  margin-bottom: 20px;
}

#options {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  width: 480px;
  height: 330px;
}

#newColBtn:hover {
  background-color: aquamarine;
}
.homeButton {
  align-self: center;
  justify-self: baseline;
  cursor: pointer;
  background-color: #9ea0a4;
  margin: 20px;
}
.homeButton:hover {
  background-color: darkgreen;
}

.brandsig {
  display: flex;
}

.brandsig-content-center {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: center;
  position: fixed;
  bottom: 0%;
  left: 0%;
  width: 100%;
  height: 60px;
  background: #464545;
}

.logo p {
  color: #b1ff2e;
}

.brand p {
  font-family: "Gruppo", sans-serif;
  color: #b1ff2e;
  font-size: large;
  align-self: center;
  margin-bottom: 20px;
}

.sig p {
  color: white;
  padding-right: 7px;
}

.brandsig-content-right {
  position: fixed;
  bottom: 0%;
  right: 0%;
  padding-right: 10px;
  padding-top: 5px;
  margin-top: 10px;
  float: right;
}

.icon-style {
  height: 30px;
  margin-left: 20px;
  margin-top: 0px;
  margin-bottom: 5px;
  border: 0px;
}

.icon-style:hover {
  background: #b1ff2e;
  padding: 2px;
}
