body {
  margin: 0;
  padding: 0;
  background: linear-gradient(145deg, #a6e5fe, #1580ab);
  height: 100vh;
  overflow: hidden;
  background-image: url('img/fluffy-blue-pillow.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.eyes {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  text-align: center;
}
.eye {
  width: 240px;
  height: 120px;
  background: #f5f5f5;
  display: inline-block;
  margin: 30px;
  border-radius: 50%;
  position: relative;
  box-shadow: 0 0 50px rgba(0, 0, 0, 1);
  overflow: hidden;
}


.ball {
  width: 80px;
  height: 80px;
  background: radial-gradient(circle, #423737, #281919 60% );
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
}
