/*
 * Accademia Nazionale del Ciclismo
 * Pagina statica sostitutiva della precedente home WordPress.
 */

:root {
  --brand-yellow: #ffff00;
  --brand-black: #000000;
  --content-width: 1170px;
}

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

html {
  min-height: 100%;
  background: var(--brand-yellow);
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  color: var(--brand-black);
  background: var(--brand-yellow);
  font-family: Montserrat, Arial, Helvetica, sans-serif;
  font-size: 17px;
  font-weight: 400;
}

.coming-soon {
  display: flex;
  min-height: 100vh;
  width: min(100%, var(--content-width));
  margin: 0 auto;
  padding: 34px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.brand {
  display: block;
  width: min(100%, 500px);
  margin-bottom: 34px;
  color: inherit;
  text-decoration: none;
}

.brand:focus-visible {
  outline: 3px solid var(--brand-black);
  outline-offset: 8px;
}

.brand__logo {
  display: block;
  width: 100%;
  height: auto;
}

h1 {
  margin: 0 0 20px;
  font-size: 2.352941rem;
  font-weight: 700;
  line-height: 1.2;
}

@media (max-width: 640px) {
  .coming-soon {
    padding: 24px 20px;
  }

  .brand {
    margin-bottom: 26px;
  }

  h1 {
    font-size: clamp(1.75rem, 8vw, 2.35rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
  }
}
