/* error styling */
.error_container {
  padding-top: 8rem;
  padding-bottom: 3rem;
  background: #f1f1f1;
  height: 100vh;
}

/* remove footer */
.footer {
  display: none;
}

/* first section styling */
.error_container_first_section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: #122742;
  width: 80%;
  margin: auto;
}

.error_container_first_section_figure_holder {
  width: 100%;
}

.error_container_first_section_figure_holder_img {
  object-fit: contain;
  width: 40%;
}

.error_container_first_section_h2_holder {
  font-weight: 700;
  font-size: large;
}

.error_container_first_section_p_holder {
  font-weight: 400;
  font-size: medium;
}

.error_container_first_section_button_holder {
  width: 30%;
  color: #fff;
  background: #31ac54;
  border-radius: 50px;
  padding: 0.5rem 0.8rem;
  margin: auto;
  border: none;
}

/* styling min-width 400px */

@media only screen and (min-width: 400px) {
  .error_container_first_section_button_holder {
    width: 200px;
  }
}

/* styling 768px */

@media only screen and (min-width: 768px) {
  .error_container_first_section_h2_holder {
    font-size: larger;
  }
}

/* styling 992px */

@media only screen and (min-width: 992px) {
  .error_container_first_section_h2_holder {
    font-size: x-large;
  }

  .error_container_first_section_p_holder {
    font-size: large;
  }
}
