:root {
  --bg-color: #100F0F;
  --text-color: #FFFF;
}

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

body.under-construction {
  min-height: 100vh;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text-color);
  background-color: var(--bg-color);
  background-image: url('../img/under-construction/texture_res.svg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
}

body.under-construction .content {
  text-align: center;
}

body.under-construction .logo {
  width: min(260px, 60vw);
  height: auto;
  margin-bottom: 1rem;
}

body.under-construction .subtitle {
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
}
