.hero__container {
  position: relative;
  display: flex;
  flex-direction: column;
  background-image: url(../../images/not-found/404.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 750px;
  text-align: center;
  width: 100%;
  height: 100vh;
}

.hero__container::before {
  content: "";
  position: absolute;
  left: 0px;
  bottom: 0px;
  background-image: url(../../images/not-found/bg-404.png);
  background-repeat: no-repeat;
  background-size: 300px;
  background-position: left bottom;
  text-align: center;
  width: 100%;
  height: 100%;
}

.hero__container .grid__container {
  position: relative;
  width: 100%;
}

.navbar__logo {
  position: absolute;
  left: 82px;
  top: 20px;
}

.go-home {
  position: absolute;
  bottom: 40px;
  left: 0;
  right: 0;
  margin: 0 auto;
  display: block;
  font-size: 16px;
  font-weight: bold;
  color: white;
  background-color: #6d00bd;
  border-radius: 30px;
  padding: 6px 18px;
  text-decoration: none;
  z-index: 10;
  width: fit-content;
}

@media (width <=768px) {

  .navbar__logo {
    left: 0;
  }

  .hero__container {
    background-size: 320px;
  }

  .go-home {
    bottom: 30%;
  }
}