* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  height: 100vh;
  background-color: rgb(193, 188, 188);
  transition: 1s ease;
}
body.active {
  background-color: black;
}
@media (max-width: 640px) {
  body {
    padding: 40px;
  }
}

.robot_head {
  width: 650px;
  aspect-ratio: 3/4;
  border-top-left-radius: 35%;
  border-top-right-radius: 35%;
  border-bottom-left-radius: 100px;
  border-bottom-left-radius: 47%;
  border-bottom-right-radius: 47%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  background-color: rgb(255, 253, 253);
  box-shadow: 0 40px 60px rgba(0, 0, 0, 0.509);
  margin: 40px auto;
  transition: 1s ease;
  position: relative;
  border: 15px solid rgb(206, 206, 206);
}
@media (max-width: 640px) {
  .robot_head {
    width: 100%;
  }
}
.robot_head:hover {
  background-color: black;
  border: 15px solid rgb(36, 35, 35);
}
.robot_head:hover .eyes {
  height: 220px;
}
@media (max-width: 640px) {
  .robot_head:hover .eyes {
    height: 100px;
    background-color: rgb(15, 15, 15);
  }
}
.robot_head:hover .eyes::before {
  transform: rotate(10deg);
  background-color: rgb(20, 20, 20);
  top: 0;
}
.robot_head:hover .eyes::after {
  transform: rotate(-10deg);
  background-color: rgb(20, 20, 20);
  top: 0;
}
.robot_head:hover .eye:first-child {
  transform: rotate(60deg) scale(0.9);
  background-color: rgb(18, 18, 18);
  border-color: rgb(50, 49, 49);
}
.robot_head:hover .eye:last-child {
  transform: rotate(-60deg) scale(0.9);
  background-color: rgb(18, 18, 18);
  border-color: rgb(50, 49, 49);
}
.robot_head:hover .eyes .eye .bib {
  background-color: red;
}
.robot_head:hover .eye:first-child:before {
  border-color: orangered;
  box-shadow: 0 0 40px red;
}
.robot_head:hover .eye:last-child:before {
  border-color: orangered;
  box-shadow: 0 0 40px red;
}
.robot_head:hover .eye:first-child:after {
  background-color: rgb(250, 12, 0);
  box-shadow: 0 0 40px orangered;
}
.robot_head:hover .eye:last-child:after {
  background-color: rgb(250, 12, 0);
  box-shadow: 0 0 40px orangered;
}
.robot_head:hover .mouth {
  height: 300px;
}
@media (max-width: 640px) {
  .robot_head:hover .mouth {
    background-color: black;
    height: 260px;
    border-color: rgb(27, 27, 27);
  }
}
.robot_head:hover .mouth::before {
  width: 70%;
  height: 70px;
  border: 5px solid rgb(145, 139, 139);
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  background-color: white;
}
@media (max-width: 640px) {
  .robot_head:hover .mouth::before {
    border-bottom-left-radius: 50%;
    border-bottom-right-radius: 50%;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    height: 100px;
    background-color: red;
    border: 5px solid rgb(58, 58, 58);
  }
}
.robot_head:hover .mouth::after {
  transform: translateY(-20px);
}
.robot_head .eyes {
  width: 100%;
  height: 250px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  transform: translateY(250px);
  position: relative;
  border-radius: 100px;
  padding: 20px;
  background-color: whitesmoke;
  z-index: 3;
  transition: 1s ease;
  box-shadow: 0 0 60px rgba(0, 0, 0, 0.227);
}
@media (max-width: 640px) {
  .robot_head .eyes {
    height: 150px;
    transform: translateY(150px);
  }
}
.robot_head .eyes::before {
  position: absolute;
  width: 200px;
  height: 40px;
  background-color: rgb(255, 255, 255);
  box-shadow: 0 0 60px rgba(0, 0, 0, 0.227);
  border-radius: 20px;
  transform: rotate(-5deg);
  transition: 1s ease;
  content: "";
  z-index: 3;
  top: -30%;
  left: 10%;
}
@media (max-width: 640px) {
  .robot_head .eyes::before {
    width: 100px;
    height: 25px;
  }
}
.robot_head .eyes::after {
  transform: rotate(5deg);
  position: absolute;
  width: 200px;
  height: 40px;
  background-color: rgb(255, 255, 255);
  box-shadow: 0 0 60px rgba(0, 0, 0, 0.227);
  border-radius: 20px;
  transition: 1s ease;
  content: "";
  z-index: 3;
  top: -30%;
  right: 10%;
}
@media (max-width: 640px) {
  .robot_head .eyes::after {
    width: 100px;
    height: 25px;
  }
}
.robot_head .eyes .eye {
  width: 200px;
  aspect-ratio: 1;
  background-color: rgb(59, 59, 59);
  border-radius: 50%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 5px dashed rgb(0, 157, 255);
  transition: 2s ease;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.561);
}
@media (max-width: 640px) {
  .robot_head .eyes .eye {
    width: 80px;
  }
}
.robot_head .eyes .eye .bib {
  width: 60px;
  aspect-ratio: 1;
  background-color: rgb(0, 157, 255);
  border-radius: 50%;
  position: absolute;
  box-shadow: 0 0 30px rgb(0, 0, 0);
  z-index: 2;
  transition: 1s ease;
}
@media (max-width: 640px) {
  .robot_head .eyes .eye .bib {
    width: 20px;
  }
}
.robot_head .eyes .eye::before {
  width: 70%;
  height: 70%;
  border: 5px dotted white;
  border-radius: 50%;
  box-shadow: 0 0 40px black;
  content: "";
  transition: 1s ease;
}
.robot_head .eyes .eye::after {
  width: 60%;
  height: 60%;
  border-radius: 50%;
  background-color: rgb(53, 53, 252);
  position: absolute;
  box-shadow: 0 0 40px black;
  content: "";
  transition: 1s ease;
}
.robot_head .mouth {
  width: 70%;
  height: 320px;
  border-bottom-left-radius: 50%;
  border-bottom-right-radius: 50%;
  background-color: rgb(222, 222, 222);
  transform: translateY(250px);
  box-shadow: 0 0 60px rgba(0, 0, 0, 0.227);
  z-index: 1;
  position: relative;
  display: flex;
  justify-content: center;
  border: 5px solid rgb(0, 157, 255);
  border-top: none;
  align-items: center;
  transition: 1s ease;
}
@media (max-width: 640px) {
  .robot_head .mouth {
    height: 170px;
    transform: translateY(120px);
  }
}
.robot_head .mouth::before {
  width: 50%;
  height: 10px;
  background-color: rgb(20, 20, 20);
  content: "";
  position: absolute;
  box-shadow: 0 0 60px rgba(0, 0, 0, 0.227);
  border-radius: 10px;
  transition: 1s ease;
  z-index: 3;
  border: 5px solid transparent;
}
.robot_head .mouth::after {
  width: 30%;
  height: 9px;
  background-color: rgb(20, 20, 20);
  border-radius: 10px;
  content: "";
  position: absolute;
  top: 53%;
  transition: 1s ease;
}
.robot_head::before {
  width: 100px;
  height: 350px;
  background-color: rgb(255, 255, 255);
  border-top-right-radius: 100px;
  border-bottom-right-radius: 100px;
  right: -10%;
  top: 30%;
  position: absolute;
  border-right: 15px solid rgb(206, 206, 206);
  content: "";
  transition: 1s ease;
}
@media (max-width: 640px) {
  .robot_head::before {
    height: 200px;
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
    top: 25%;
  }
}
.robot_head::after {
  width: 100px;
  height: 350px;
  background-color: rgb(255, 255, 255);
  border-top-left-radius: 100px;
  border-bottom-left-radius: 100px;
  left: -10%;
  top: 30%;
  position: absolute;
  border-left: 15px solid rgb(206, 206, 206);
  content: "";
  transition: 1s ease;
}
@media (max-width: 640px) {
  .robot_head::after {
    height: 200px;
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
    top: 25%;
  }
}
.robot_head:hover::before {
  background-color: black;
  border-right: 15px solid rgb(36, 35, 35);
}
.robot_head:hover::after {
  background-color: black;
  border-left: 15px solid rgb(36, 35, 35);
}/*# sourceMappingURL=style.css.map */