*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  min-height: 100%;
}

body {
  font-family: "Nunito Sans", "Segoe UI", sans-serif;
  background: #0054a4;
  color: #ffffff;
  -webkit-font-smoothing: antialiased;
}

.closed-page {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 2rem 1.25rem;
  text-align: center;
}

.closed-logo {
  width: min(146px, 36vw);
  height: auto;
  display: block;
}

.closed-message {
  width: max-content;
  max-width: calc(100vw - 2.5rem);
}

.closed-message p {
  margin: 0;
  font-size: clamp(0.72rem, 2.15vw, 1.25rem);
  font-weight: 600;
  line-height: 1.4;
  color: #ffffff;
  white-space: nowrap;
}

.closed-message p + p {
  margin-top: 1.35rem;
}
