* {
  position: relative;
}
body,
html {
  height: 100%;
}
body {
  font-family: Arial, sans-serif;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #1d1d1d;
}

.ferrisWheel {
  width: 400px;
  height: 400px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 4px solid #999;
}

.basket {
  text-align: center;
  line-height: 50px;
  width: 80px;
  height: 78px;
  position: absolute;
  background-image: url("https://assets.codepen.io/32887/ferris-basket.png");
}

.arm {
  width: 100px;
  height: 4px;
  background: #999;
  position: absolute;
}
