* { 
  margin: 0; 
  padding: 0; 
  box-sizing: border-box;
  font-family: 'Courgette'
}
.container{
  display: flex;
}

aside {
  width: 200px;
  background-color: hotpink;
}

.imgAdd {
  width: 100px;
  height: 100%;
}

img { 
  width: 100%;
}

header {
  height: 5rem;
}

h1 {
  padding: 1rem;
  
}

button {
  cursor: pointer;
}

.colorBtn {
  width: 40px;
  height: 40px;
  margin: 0.5rem;
  border-radius: 50%;
  border: solid 1px;
  justify-self: center;
}

.colorBtns{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.imgAddBtns {
  display: flex;
  flex-direction: column;
  align-items: center;
  
  border-bottom: solid white 10px;
}

.colorBtns, .strokeBtns {
  padding-bottom: 1rem;
}

.stack-sm > * + * {
  margin-top: 0.5rem;
}
