/*Bring in Stornoway from Fontdue
<link href="https://fonts.fontdue.com/alanna-munro-type-foundry/css/Rm9udENvbGxlY3Rpb246MTgzNzYyNTYxNDQyNjI5MjI4OA%3D%3D.css" rel="stylesheet">
*/

/* Fluid font sizing based on viewport size */
  html { font-size: 1rem; }
  @media screen and (max-width:1920px) { html { font-size: 1rem; } }
  @media screen and (max-width:480px) { html { font-size: calc(0.8747384937238494rem + 0.41841004184100417vw); } }

/* Load Custom Font */
@font-face {
  font-family: "Stornoway Variable Regular";
  src: url("../fonts/StornowayVar.woff2") format("woff2"),
       url("../fonts/StornowayVar.woff") format("woff");
  font-weight: 100 900; /* variable font weight range */
  font-style: normal;
  font-display: swap;
}

/* Define Global Color Variables */
:root {
  --black: #111111;
  --white: #ffffff;
  --blue: #756FED;
  --dkblue: #5A38E6;
}

/* Reset some default browser styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Stornoway Variable Regular", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-variation-settings: 'CONT' 0, 'ital' 0, 'wght' 400;
  line-height: 1.6;
  color: var(--black);
  background: var(--white);
}

h1, h2 {
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1rem;
  font-size: 1.12rem;
  font-variation-settings: 'CONT' 0, 'ital' 0, 'wght' 350;
}

a {
  color: var(--blue);
}

a:hover {
  color: var(--dkblue);
}

section {
  padding: 4rem 2rem;
  margin: auto;
}

#hero {
  background-color: var(--black);
  color: var(--white);
}

#page-container {
  max-width: 940px;
  margin: auto;
}

#intro {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 60px;
}

#notice {
  font-size: 2.2rem;
  font-variation-settings: 'CONT' 80, 'ital' 0, 'wght' 300;
  line-height: 2.6rem;
  max-width:700px;
  margin-bottom: 60px;
}

#hide {
  visibility: hidden;
  max-height: 0px;
}

#seventy {
  max-width: 70%;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: var(--blue);
  color: var(--white);
  border-radius: 5px;
  text-decoration: none;
}

.btn:hover {
  color: var(--white);
  background-color: var(--dkblue);
}

@media (max-width: 480px) {

  section {
    padding: 2rem 1rem;
    margin: auto;
  }

  #seventy {
    max-width: 100%;
  }

}
