.root{
  width: 100%;
}

.button-container{
  display: flex;
  align-items: center;
}

.next-button{
  margin: 50px auto 0 auto;
  text-decoration: none;
  padding: 0 85px;
  height: 40px;
  background: $color-grey-1;
  transition: background .1s linear;
  &:hover{
    background: $color-grey-2;
  }
}

.prev-button{
  margin: 0 auto 50px auto;
  text-decoration: none;
  padding: 0 85px;
  height: 40px;
  background: $color-grey-1;
  transition: background .1s linear;
  &:hover{
    background: $color-grey-2;
  }
}
