@import url('https://fonts.googleapis.com/css?family=Raleway');

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background: #2c2d2d;
  overflow: hidden;
  font-family: 'Raleway', sans-serif;
}

/* Stars */
.star {
  position: absolute;
  width: 3px;
  height: 3px;
  background: white;
  border-radius: 50%;
  animation: blink 2s infinite alternate;
  z-index: -2;
}

@keyframes blink {
  from {
    opacity: 1;
  }

  to {
    opacity: 0.2;
  }
}

h2 {
  color: #ccc;
  text-align: center;
  margin-top: 20px;
  transition: opacity 0.8s;
}

h2.hide {
  opacity: 0;
}

.sand {
  background: #B69C77;
  height: 30%;
  position: absolute;
  width: 100%;
  bottom: 0;
  z-index: -1;
}

/* BB-8 */
.bb8 {
  position: absolute;
  bottom: 20%;
  left: 0;
  width: 140px;
  margin-left: -70px;
}

.antennas {
  position: absolute;
  left: 22%;
  transition: left 0.6s;
}

.antennas.right {
  left: 0%;
}

.antenna {
  position: absolute;
  width: 2px;
  background: #e0d2be;
}

.antenna.short {
  height: 20px;
  top: -60px;
  left: 50px;
}

.antenna.long {
  height: 36px;
  top: -78px;
  left: 56px;
  border-top: 6px solid #020204;
  border-bottom: 6px solid #020204;
}

.head {
  position: absolute;
  top: -46px;
  left: 50%;
  width: 90px;
  height: 56px;
  margin-left: -45px;
  background: #e0d2be;
  border-radius: 90px 90px 14px 14px;
  overflow: hidden;
  z-index: 1;
}

.head .stripe {
  position: absolute;
  width: 100%;
}

.head .stripe.one {
  top: 6px;
  height: 6px;
  background: #999;
  opacity: 0.8;
}

.head .stripe.two {
  top: 17px;
  height: 4px;
  background: #CD7640;
}

.head .stripe.three {
  bottom: 3px;
  height: 4px;
  background: #999;
  opacity: 0.5;
}

.eyes {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0%;
  transition: left 0.6s;
}

.eyes.right {
  left: 36%;
}

.eye {
  position: absolute;
  border-radius: 50%;
  display: block;
}

.eye.one {
  top: 12px;
  left: 12%;
  width: 30px;
  height: 30px;
  background: #020204;
  border: 4px solid #e0d2be;
}

.eye.one::after {
  content: '';
  position: absolute;
  width: 3px;
  height: 3px;
  background: white;
  border-radius: 50%;
  top: 4px;
  right: 4px;
}

.eye.two {
  top: 30px;
  left: 40%;
  width: 16px;
  height: 16px;
  background: #e0d2be;
  border: 1px solid #020204;
}

.eye.two::after {
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  background: #020204;
  border-radius: 50%;
  top: 2px;
  left: 2px;
}

.ball {
  position: relative;
  width: 140px;
  height: 140px;
  background: #d1c3ad;
  border-radius: 50%;
  overflow: hidden;
}

.lines {
  position: absolute;
  border: 2px solid #B19669;
  border-radius: 50%;
  width: 400px;
  height: 400px;
  opacity: 0.6;
}

.lines.two {
  top: 10px;
  left: -250px;
}

.ring {
  position: absolute;
  border-radius: 50%;
  background: #CD7640;
}

.ring::after {
  content: '';
  position: absolute;
  width: 70%;
  height: 70%;
  top: 50%;
  left: 50%;
  margin-left: -35%;
  margin-top: -35%;
  background: #d1c3ad;
  border-radius: 50%;
}

.ring.one {
  width: 70px;
  height: 70px;
  top: 20px;
  left: 30px;
}

.ring.two {
  width: 70px;
  height: 70px;
  top: 80px;
  left: 100px;
  transform: rotate(36deg);
}

.ring.three {
  width: 50px;
  height: 50px;
  top: 102px;
  left: -16px;
  transform: rotate(-10deg);
}

.shadow {
  position: absolute;
  bottom: -8px;
  left: 5px;
  width: 140px;
  height: 23px;
  background: #3A271C;
  border-radius: 50%;
  opacity: 0.7;
  z-index: -1;
}

.shameless {
  position: absolute;
  bottom: 10px;
  right: 10px;
}

.shameless p {
    color: white;
    text-decoration: none;
  }