.error-modal-container {
  height: 100vh;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  display: grid;
  place-items: center;
  padding: 2em;
  background-color: rgba(0, 0, 0, 0.75);
  z-index: 999;
}
.error-modal-container .content {
  width: 100%;
  max-width: 480px;
  padding: 2em;
  border-radius: 12px;
  text-align: center;
  line-height: 1.5;
  background-color: rgba(0, 0, 0, 0.9);
  color: #fff;
}
.error-modal-container .content .title {
  font-weight: 900;
  font-size: 1.5em;
  margin-bottom: 1em;
  text-transform: uppercase;
  color: rgb(219 219 219);
}
.error-modal-container .content .desc {
  font-weight: 400;
  text-wrap: pretty;
  color: #fff;
  font-family: "Inter", sans-serif;
}
.error-modal-container .content svg {
  width: 4em;
}
.error-modal-container .content svg path {
  fill: #9b1212;
}
.error-modal-container .button {
  padding: 0.75em 1em;
  border-radius: 12px;
  background: #c2e100;
  color: #000;
  font-weight: 700;
  margin-top: 1em;
  cursor: pointer;
}
