body {
  font-family: Roboto, RobotoDraft, Helvetica, Arial, sans-serif;
  background-color: #e8eaed;
}

h1 {
  font-weight: 300;
}

p {
  font-weight: 300;
  line-height: 24px;
  color: #333;
}

button {
  padding: 10px;
  border-radius: 5px;
  background-color: #689f38;
  color: #fff;
  margin-left: 10px;
}

.wrapper {
  width: 1000px;
  margin: auto;
  background-color: #fff;
  padding: 30px;
  margin-top: 30px;
  margin-bottom: 30px;
  box-shadow: 0px 0px 8px rgba(0,0,0,0.25);
}

.flex-container {
  display: flex;
}

.buttons {
  display: flex;
  justify-content: flex-end;
}

.carousel {
  display: flex;
  flex-basis: 1;
  height: 300px;
  margin-top: 35px;
}

.carousel-images-container {
  overflow: hidden;
  overflow-x: auto;
  width: 100%;
}

.carousel-images {
  display: flex;
  height: 100%;
}

.carousel-images > img {
  max-height: 100%;
  margin-right: 15px;
}

.details {
  margin-left: 30px;
  margin-right: 30px;
}