body,
html {
  width: 100%;
  height: 100%;
  overflow: hidden;
  margin: 0;
  padding: 0;
  background: #1d1d1d;
}

.bug {
  width: 40px;
  height: 40px;
  background: #f6c;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  -webkit-box-shadow: 0px 0px 3px 3px rgba(0, 0, 0, 0.19);
  box-shadow: 0px 0px 3px 3px rgba(0, 0, 0, 0.19);
}

.bug::after {
  width: 20%;
  height: 20%;
  background: white;
  border-radius: 50%;
  content: "";
  position: absolute;
  left: 70%;
  top: 35%;
  transform: translate(-50%, -50%);
}

.bug::before {
  width: 20%;
  height: 20%;
  background: white;
  border-radius: 50%;
  content: "";
  position: absolute;
  left: 70%;
  top: 65%;
  transform: translate(-50%, -50%);
}

h1 {
  color: white;
  margin: 20px;
  font-family: sans-serif;
}
