/*
Theme Name: Figure Facts Landing
Theme URI: https://figurefacts.com/
Author: Astra
Description: A minimal, dependency-free landing page for Figure Facts for Life.
Version: 1.0.0
Requires at least: 5.8
Requires PHP: 7.4
Text Domain: figurefacts-landing
*/

:root {
  color-scheme: light;
  background: #fff;
}

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

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

body {
  background: #fff;
  color: #41366c;
}

.site-main {
  display: grid;
  min-height: 100vh;
  min-height: 100svh;
  place-items: center;
  padding: clamp(1rem, 4vw, 3rem);
}

.brand {
  width: min(100%, 68rem);
  text-align: center;
}

.brand img,
.brand .custom-logo {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 480px) {
  .site-main {
    padding: 0.75rem;
  }
}

