@import url('https://fonts.googleapis.com/css2?family=Londrina+Shadow&display=swap');
body {
  background-image: url(../images/404.jpeg);
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
.breadcrumb {
  display: none;
}
.not-found .svg-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  height: 80vh;
}
.not-found h1 {
  font-size: 260px;
  font-family: 'Londrina Shadow';
}
.not-found svg {
  animation: girar 2.5s infinite linear;
}

@keyframes girar {
  0%{
    transform: rotate();
  }
  100% {
    transform: rotate(-360deg);
  }
}