.page-not-found {
  height: calc(100vh - 70px);
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-not-found h1 {
  font-size: 6.5rem;
  font-weight: 700;
}
.page-not-found h1 span {
  display: inline-block;
  width: 100px;
  height: 100px;
  background-image: url("https://colorlib.com/etc/404/colorlib-error-404-12/img/emoji.png");
  background-size: cover;
  -webkit-transform: scale(1.4);
  -ms-transform: scale(1.4);
  transform: scale(1.4);
  z-index: -1;
  margin: 0 10px;
}

.page-not-found p {
  font-size: 2rem;
  text-align: center;
  color: var(--primary-foreground);
  font-family: Berthold_Akzidenz_Grotesk_Condensed_Bold;
}
.page-not-found span {
  font-weight: 100;
  font-size: 1.2rem;
  max-width: 54ch;
  text-align: center;
  font-family: calibri_regular;
}
.page-not-found a {
background-color: pink;
margin: 20px 0;
padding: 12px 25px;
border-radius: 10px;
color: var(--primary-foreground);
font-size: 1.2rem;
font-weight: 700;
transition: all 0.75s ease-in-out;
}

.page-not-found a:hover{
background-color: #ce5267;
color: white;
}
