:root {
 --pl-body:  #06101A;
 --pl-brand: #6E26F7;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  box-sizing: border-box;
}

body {
  font: 400 1rem/1.6 sans-serif;
  background-color: var(--pl-body);
}

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

.maintenance-mode {
  width: 100%;
  height: calc(100vh - 2.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.25rem;
  color: white;
}

.maintenance-mode__title {
  font-size: 1.25rem;
}

.logo {
  width: 4rem;
  aspect-ratio: 1;
}

.logo__shape {
  fill: var(--pl-brand);
}

.logo__signet {
  fill: white;
}