@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("assets/fonts/roboto-400.ttf") format("truetype");
}

@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("assets/fonts/roboto-700.ttf") format("truetype");
}

:root {
  --page-bg: #f7f4ed;
  --text: #1f2a24;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--text);
  background: var(--page-bg);
  font-family: "Roboto", Arial, sans-serif;
}

.maintenance {
  display: flex;
  min-height: 100vh;
  width: min(100%, 960px);
  margin: 0 auto;
  padding: 48px 24px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 36px;
  text-align: center;
}

.logo {
  display: block;
  width: min(420px, 78vw);
  height: auto;
}

h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 400;
  line-height: 1.25;
}
