.center-404 {
  font-family: "Lato", sans-serif;
  font-size: 1.5rem;
  color: #293b49;
  background: #141414;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.error-404 {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-content: center;
}

.number-404 {
  font-weight: 900;
  font-size: 15rem;
  line-height: 1;
  color: #f95b36;
}

.illustration-404 {
  position: relative;
  width: 12.2rem;
  margin: 0 2.1rem;
}

.circle-404 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 12.2rem;
  height: 11.4rem;
  border-radius: 50%;
  background-color: #f95b36;
}

.clip-404 {
  position: absolute;
  bottom: 0.3rem;
  left: 50%;
  transform: translateX(-50%);
  overflow: hidden;
  width: 12.5rem;
  height: 13rem;
  border-radius: 0 0 50% 50%;
}

.paper-404 {
  position: absolute;
  bottom: -0.3rem;
  left: 50%;
  transform: translateX(-50%);
  width: 9.2rem;
  height: 12.4rem;
  border: 0.3rem solid #141414;
  background-color: white;
  border-radius: 0.8rem;
}

.paper-404::before {
    content: "";
    position: absolute;
    top: -0.7rem;
    right: -0.7rem;
    width: 1.4rem;
    height: 1rem;
    background-color: #141414;
    border-bottom: 0.3rem solid #293b49;
    transform: rotate(45deg);
  }

.face-404 {
  position: relative;
  margin-top: 2.3rem;
}

.eyes-404 {
  position: absolute;
  top: 0;
  left: 2.4rem;
  width: 4.6rem;
  height: 0.8rem;
}

.eye-404 {
  position: absolute;
  bottom: 0;
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  background-color: #293b49;
  animation-name: eye;
  animation-duration: 4s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  
}

.eye-left-404 {
    left: 0;
 }
 
 .eye-right-404 {
	right: 0;
 }

@keyframes eye {
  0% {
    height: 0.8rem;
  }
  50% {
    height: 0.8rem;
  }
  52% {
    height: 0.1rem;
  }
  54% {
    height: 0.8rem;
  }
  100% {
    height: 0.8rem;
  }
}

.rosyCheeks-404 {
  position: absolute;
  top: 1.6rem;
  width: 1rem;
  height: 0.2rem;
  border-radius: 50%;
  background-color: #fdabaf;
}

.rosyCheeks-left-404 {
    left: 1.4rem;
  }
  
.rosyCheeks-right-404 {
    right: 1.4rem;
}
  
  
.mouth-404 {
  position: absolute;
  top: 3.1rem;
  left: 50%;
  width: 1.6rem;
  height: 0.2rem;
  border-radius: 0.1rem;
  transform: translateX(-50%);
  background-color: #293b49;
}

.text-404 {
  margin-top: 5rem;
  font-weight: 300;
  font-size: 1.5rem;
  color: #CCCCCC;
}

.button-404 {
  margin-top: 4rem;
  padding: 1.2rem 3rem;
  color: white;
  background-color: #f95b36;
}

.button-404:hover {
    background-color: #f95b36;
  }
  
.by-404 {
  position: absolute;
  bottom: 0.5rem;
  left: 0.5rem;
  text-transform: uppercase;
  color: #293b49;
}

.byLink-404 {
  color: #04cba0;
}