/* CSS provided by the faculty */
body {
  margin: 0;
  padding: 0;
}
.eyes {
  position: absolute;
  top: 250px;
  transform: translateY(-250px);
  width: 100%;
  text-align: center;
}
.eye {
  width: 240px;
  height: 120px;
  background: #fff;
  display: inline-block;
  margin: 40px;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
}
.ball {
  width: 80px;
  height: 80px;
  background: #000;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
}

/* This is the custom CSS I added */
body {
  background: url('./background.jpg') no-repeat;
  background-size: cover;
}
.face {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -400px;
  margin-top: -250px;
  width: 800px;
  height: 500px;
  background-color: yellow;
  border: 5px solid black;
}
.hair {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -200px;
  margin-top: -350px;
  height: 100px;
  width: 400px;
  border: 3px solid black;
}
.hair-2 {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -300px;
  margin-top: -300px;
  height: 50px;
  width: 600px;
  border: 3px solid black;
}
.left-ear {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -500px;
  margin-top: -100px;
  width: 100px;
  height: 200px;
  background-color: yellow;
  border: 5px solid black;
}
.right-ear {
  position: absolute;
  top: 50%;
  right: 50%;
  margin-right: -515px;
  margin-top: -100px;
  width: 100px;
  height: 200px;
  background-color: yellow;
  border: 5px solid black;
}
.eye {
  border: 4px solid black;
}
.nose {
  position: absolute;
  top: 180px;
  left: 50%;
  margin-left: -75px;
  height: 100px;
  width: 150px;
  box-shadow: -7px 10px 15px -5px rgba(0,0,0,0.75);
}
.beard {
  position: absolute;
  top: 300px;
  left: 0;
  height: 200px;
  width: 100%;
  background-color: #c4a275;
}
.mouth {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -300px;
  width: 600px;
  height: 5px;
  background-color: #988073;
}
.cloud-container {
  position: absolute;
  z-index: -500;
  height: 100%;
  width: 100%;
  display: grid;
  grid-template-columns: 33% 33% 33%;
  grid-template-rows: 50% 50%;
}
.cloud {
  position: relative;
  height: 268px;
  width: 250px;
  background: url('./cloud.png');
  background-size: cover;
  opacity: 0;
}