.paint-wraper {
  padding: 20px;
}

#controllers {
  display: flex;
}
#paint {
  box-shadow: 0.3rem 0.3rem 0.6rem #c8d0e7, -0.2rem -0.2rem 0.5rem white;
  background: white;
  border-radius: 1rem;
}
.controller {
  margin: 10px 10px 10px 0px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 5px;
  height: 30px;
  width: 30px;
  border-radius: 12px;
  box-shadow: 0.3rem 0.3rem 0.6rem #c8d0e7, -0.2rem -0.2rem 0.5rem white;
  cursor: pointer;
  transition: 0.3s ease;
  font-weight: bold;
  background: #f0f0f0;
}

.controller:active {
  box-shadow: inset 0.2rem 0.2rem 0.5rem #c8d0e7,
    inset -0.2rem -0.2rem 0.5rem white;
}

.controller-text {
  margin: 10px 10px 10px 0px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  text-decoration: none;
  padding: 5px;
  height: 30px;
  width: 120px;
  border-radius: 12px;
  box-shadow: 0.3rem 0.3rem 0.6rem #c8d0e7, -0.2rem -0.2rem 0.5rem white;
  color: #9baacf;
  letter-spacing: 2px;
  font-weight: bold;
  background: #f0f0f0;
}
