* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: saddlebrown;
}

h1 {
  width: 300px;
  padding: 75px;
  margin: 100px auto;
  text-align: center;
  font-family:'Segoe UI', sans-serif;
  border-radius: 99999px;
  background: linear-gradient(white,#BBBBBB);
}

#speechbubble {
  margin: -100px auto 0;
  width: 0;
  height: 0;
  border: 50px solid #BBBBBB;
  border-left-color: rgba(0,0,0,0);
  border-right-color: rgba(0,0,0,0);
  border-bottom-color: rgba(0,0,0,0);
  transform: scaleX(0.5);
}

#head {
  margin: 0 auto;
  background: linear-gradient(#ff5599,#ff3377);
  width: 500px;
  height: 500px;
  border-radius: 99999px;
}

#ears {
  position: relative;
  top: 20px;
  margin: 0 auto;
  width: 500px;
  height: fit-content;
  display: flex;
  justify-content: space-between;
}

#left-ear {
  width: 125px;
  height: 125px;
  border-top-left-radius: 99999px;
  background: linear-gradient(#ff5599,#ff3377);
}

#right-ear {
  width: 125px;
  height: 125px;
  border-top-right-radius: 99999px;
  background: linear-gradient(#ff5599,#ff3377);
}

#eyes {
  position: relative;
  top: 50px;
  margin: 0 auto;
  width: 250px;
  height: fit-content;
  display: flex;
  justify-content: space-between;
}

.eye {
  width: 50px;
  height: 100px;
  border-radius: 25px;
  background-color: black;
}

.eye-shine {
  position: relative;
  top: 5px;
  left: 7.5px;
  width: 25px;
  height: 25px;
  border-radius: 99999px;
  background-color: white;
}

#nose {
  position: relative;
  top: 75px;
  margin: 0 auto;
  width: 225px;
  height: 150px;
  border-radius: 75px;
  background: linear-gradient(#ff77BB,#ff5599);
  display: flex;
  justify-content: space-evenly;
}

.nostril {
  position: relative;
  top: 50px;
  width: 50px;
  height: 50px;
  border-radius: 50px;
  background-color: black;
}