body {
  margin: 0px;
  padding: 0px;
  height: 100vh;
  width: 100vw;
  box-sizing: border-box;
  font-family: sans-serif;
}

.container {
  width: 95%;
  height: 95%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.error-content {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.error-img {
  width: 500px;
  height: 600px;
  margin-top: 8em;
  background: url("./undraw_server_down_s4lk.svg");
  background-size: contain;
  background-repeat: no-repeat;
}

.error-msg h1 {
  font-family: "Ubuntu";
  word-wrap: normal;
}

.error-msg p {
  word-wrap: normal;
  font-size: 1.2rem;
  text-justify: inter-word;
}

.footer {
  width: 100%;
  text-align: center;
}

@media only screen and (max-width: 1110px) {
  .error-content {
    flex-wrap: wrap;
  }
}

@media only screen and (max-width: 425px) {
  .error-img {
    display: none;
  }
}
