.error {
  height: calc(100vh - 415px);
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Poppins";
  font-weight: 500;
  font-size: 20px;

  .error_container {
    width: fit-content;
    height: fit-content;
    padding: 20px 50px;
    background-color: #fff;
    border-radius: 20px;
    line-height: 0.8;
    text-align: center;
    display: flex;
    align-items: center;
    flex-direction: column;
    box-shadow: var(--shadow);

    .error_header {
      font-size: 90px;
    }

    .error_footer {
      line-height: 1.5;
      width: 100%;
      display: flex;
      flex-direction: column;
      gap: 10px;
      align-items: center;

      a {
        display: flex;
        height: fit-content;
        background-color: #b41f1c;
        color: #fff;
        justify-content: center;
        align-items: center;
        gap: 20px;
        width: fit-content;
        padding: 5px 20px;
        border-radius: 5px;
        font-size: 16px;
        font-weight: 400;

        &:hover {
          background-color: #c90d0d;
        }

        p {
          margin: 0;
        }
      }
    }
  }
}