:root {
  --dark-green: #001f1a;
}

@font-face {
  font-family: "Departura-Regular";
  src: url("fonts/departura-regular.woff2") format("woff2"),
    url("fonts/departura-regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  background: white;
}

section {
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

#language_switcher {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  height: 4rem;
  transition: 0.3s ease;
  cursor: pointer;
}

.closure-page {
  min-height: 100vh;
  min-height: 100svh;
  padding: 2rem;
  background: white;
}

.closure-page #loader {
  position: fixed;
  inset: 0;
  background-color: white;
  z-index: 3;
  transition: 0.3s ease;
  pointer-events: none;
}

.closure-card {
  width: min(28rem, 100%);
  margin: 0 auto;
  text-align: center;
}

.closure-logo {
  width: clamp(7rem, 22vw, 10rem);
  height: auto;
  margin-bottom: 1.5rem;
}

.closure-message {
  margin: 0;
  font-family: "Departura-Regular", sans-serif;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  line-height: 1.5;
  color: var(--dark-green);
}
