.nw-notfound-container {
  position: relative;
  margin: 0 auto;
  max-width: $body-maxwidth;
  min-height: 300px;
  padding: $notfound-container-paddingmobile;
  @media screen and (min-width: $screen-min-sm) {
    padding: $notfound-container-padding;
  }
}

.nw-notfound-image {
  width: 100%;
  padding: $notfound-image-paddingmobile;
  @media screen and (min-width: $screen-min-sm) {
    padding: $notfound-image-padding;
  }
}

.nw-notfound-textcontainer {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.nw-notfound-text {
  margin: 0;
  padding: $notfound-title-paddingmobile;
  font-size: $notfound-title-fontsizemobile;
  font-family: $notfound-title-fontfamily;
  text-align: center;
  color: $notfound-title-color;
  @media screen and (min-width: $screen-min-sm) {
    padding: $notfound-title-padding;
    font-size: $notfound-title-fontsize;
  }
}

.nw-notfound-message {
  margin: 0;
  padding: $notfound-message-paddingmobile;
  font-size: $notfound-message-fontsizemobile;
  font-family: $notfound-message-fontfamily;
  text-align: center;
  color: $notfound-message-color;
  @media screen and (min-width: $screen-min-sm) {
    padding: $notfound-message-padding;
    font-size: $notfound-message-fontsize;
  }
}
