.container {
align-items: center;
width: 100%;
height: 100%;
border-radius: 1px;
}
.box {
border-radius: 4px;
align-items: center;
flex: 0 0 auto;
padding: 5px;
background: yellow;
}
.image {
  display: block;
  object-fit: cover;
  width: 10%;
  height: 10%;
}
.flex-container {
display: flex;
justify-content: center;
align-items: center;
height: 40px;
background-color: yellow;
}
.square1 {
flex: 0 0 auto;
padding: 1px;
}
.square2 {
flex: 0 0 auto;
padding: 1px;
background: black;
}
.button {
  display: inline-block;
  border-radius: 10px;
  background-color: yellow;
  text-align: center;
  font-size: 12px;
  padding: 5px;
  width: 200px;
  transition: all 0.5s;
  cursor: pointer;
  margin: 1px;
}
.button span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
}
.button span:after {
  content: '\00bb';
  position: absolute;
  opacity: 0;
  top: 0;
  right: -20px;
  transition: 0.5s;
}
.button:hover span {
  padding-right: 25px;
}
.button:hover span:after {
  opacity: 1;
  right: 0;
}
#parent {
    width: 30%;
    margin: 0 auto;
}