* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: Lato;
  background-color: rgb(255, 255, 255);
}

img {
  width: 100%;
}

h1 {
  font-size: 8rem;
}

p {
  font-size: 2rem;
}

main {
  display: grid;
  place-items: center;
}

.minionCharacter {
  position: relative;
  width: 50%;
  
}

#minion {
  z-index: 1;
}

#eye {
  z-index: -1;
  position: absolute;
  top: 18%;
  left: 36%;
  width: 40%;
}

