body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;

  width: 100%;
  height: 100vh;
  min-height: 500px;
}

.error-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;

  width: 100%;
  min-height: 150px;
}

#copyright {
  width: 100%;
}

.error-container button {
  color: white;
  background-color: rgb(93, 93, 255);
  border: none;
  border-radius: 5px;
  padding: 10px;
}

.error-container button:hover {
  background-color: rgb(0, 0, 255);
}

.error-container button:active {
  transform: scale(0.95);
  outline: none;
}
