html {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}

.app {
  position: relative;

  width: 100%;
  height: 100%;
  background-color: white;

  font-family: "Gaegu", serif;
}

iframe {
  display: none;
}

/* ================================= */

.face {
  position: absolute;

  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  width: 200px;
  height: 150px;

  transition: all 1s;
}

.front {
  position: absolute;
  overflow: hidden;

  top: 45%;
  left: 50%;
  transform: translateX(-50%);

  width: 84px;
  height: 60px;
  border-radius: 50%;

  box-shadow: 0 0 2px 1px #181412;
}

.nose {
  position: absolute;

  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);

  width: 20px;
  height: 12px;
  border-radius: 50%;

  background-color: #181412;
}

.mouth {
  position: absolute;

  top: 0;
  left: 50%;

  width: 30px;
  height: 25px;

  border: 3px solid #181412;
  border-bottom-right-radius: 15px;
  border-bottom-left-radius: 15px;
  border-top: 0;
}

.mouth.left {
  transform: translateX(-100%);
}

.eye {
  position: absolute;

  top: 30%;

  width: 15px;
  height: 15px;
  border-radius: 50%;

  background-color: #ffffff;
}

.eye::after {
  content: "";
  position: absolute;

  top: -1px;
  right: -1px;

  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #181412;
}

.eye.left {
  left: 35%;
}

.eye.right {
  right: 35%;
}

.ear {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;

  transition: all 1s;
}

.eardeco {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  margin-top: 5px;
  background-color: transparent;

  transition: background-color 0.3s;
}

.next {
  position: absolute;
  cursor: pointer;

  font-family: inherit;
  font-size: 32px;
  background-color: transparent;
  border: 0;
  color: #000000;

  top: calc(50% + 120px);
  left: 50%;
  transform: translate(-50%, -50%);
}

.next:hover,
.next:active {
  color: #9e7c59;
}

.dots {
  position: relative;
  overflow: hidden;

  width: 100%;
  height: 100%;
  border-radius: inherit;

  opacity: 0;
  transition: opacity 1s;
}

.dot {
  position: absolute;

  border-radius: 50%;
  background-color: #655c49;
}

/* ================================= */

.bear .face {
  background-color: #9e7c59;
  border-radius: 45%;
}

.dog1 .face,
.dog2 .face {
  border-radius: 20px;
}

.dog1 .face {
  background-color: #e6d1a4;
}

.dog2 .face {
  background-color: #f0e7be;
}

.bear .ear {
  top: -30px;

  width: 80px;
  height: 80px;

  background-color: #9e7c59;
  border-radius: 50%;
}

.bear .ear::after {
  content: "";
  position: absolute;

  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);

  width: 60%;
  height: 60%;
  border-radius: 50%;

  box-shadow: 0 0 3px 1px #181412;
}

.bear .ear.left {
  left: -10px;
}

.bear .ear.right {
  right: -10px;
}

.dog1 .ear,
.dog2 .ear {
  top: 10px;

  width: 30px;
  height: 75%;

  border-radius: 20px;
}

.dog1 .ear.left,
.dog2 .ear.left {
  left: 10px;
}

.dog1 .ear.right,
.dog2 .ear.right {
  right: 10px;
}

.dog1 .ear {
  background-color: #a78658;
}

.dog2 .ear {
  background-color: #ccbf86;
}

.dog1 .dots {
  opacity: 1;
}

.dog2 .eardeco {
  background-color: #f0e7be;
}
