/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
 html{line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0}main{display:block}h1{font-size:2em;margin:.67em 0}hr{box-sizing:content-box;height:0;overflow:visible}pre{font-family:monospace,monospace;font-size:1em}a{background-color:transparent}abbr[title]{border-bottom:none;text-decoration:underline;}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace,monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.25em}img{border-style:none}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}button,[type="button"],[type="reset"],[type="submit"]{-webkit-appearance:button}button::-moz-focus-inner,[type="button"]::-moz-focus-inner,[type="reset"]::-moz-focus-inner,[type="submit"]::-moz-focus-inner{border-style:none;padding:0}button:-moz-focusring,[type="button"]:-moz-focusring,[type="reset"]:-moz-focusring,[type="submit"]:-moz-focusring{outline:1px dotted ButtonText}fieldset{padding:.35em .75em .625em}legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}progress{vertical-align:baseline}textarea{overflow:auto}[type="checkbox"],[type="radio"]{box-sizing:border-box;padding:0}[type="number"]::-webkit-inner-spin-button,[type="number"]::-webkit-outer-spin-button{height:auto}[type="search"]{-webkit-appearance:textfield;outline-offset:-2px}[type="search"]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details{display:block}summary{display:list-item}template{display:none}[hidden]{display:none}
/* ---------------------------------------------------------------------------- */

/* FONTS */
 @font-face {
	src: url('fonts/RoslindaleDisplayExtraCondensed-Bold.woff2') format("woff2"),
		url('fonts/RoslindaleDisplayExtraCondensed-Bold.woff') format("woff");
	font-family: 'RoslindaleExtraCond';
	font-style: normal;
	font-weight: normal;
}

@keyframes rotate {
	100% {
		transform: rotate(1turn);
	}
}

:root {
	--font-serif: "RoslindaleExtraCond", Times, Georgia, serif;
  --font-sans: "futura-100", Helvetica, sans-serif; /* 400, 500, 700*/
	--angle: 0deg;
}

/* VIEW TRANSITIONS -------------------------------------------------------- */
/* Filter Blur transition */

@view-transition {navigation: auto;}

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

/* Anything that has been anchored to should have extra scroll margin */
:target {scroll-margin-block: 5ex;}

html {
	-moz-text-size-adjust: none;
	-webkit-text-size-adjust: none;
	text-size-adjust: none;
	/*font-size: 62.5%;*/ /* Reset to 10px from browser default */
}

body {
	background: rgba(0,0,0,.94);
	color: rgba(255,255,255,1);
	font-family: var(--font-sans);
  font-weight: 400;
  font-style: normal;
	font-size: 1rem;
	font-synthesis: none;
	line-height: 1.5;
	margin: 2rem;
	position: relative;
	-webkit-font-smoothing: subpixel-antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: optimizeLegibility;
}

main {
	border-radius: 2rem;
	display: grid;
	place-content: center;
	text-align: center;
  min-height: 100vh;
  margin: 0 auto;
	overflow: hidden;
	padding: 0;
	position: relative;
	z-index: 0;
}

main::before {
  content: "";
  position: absolute;
  z-index: -2;
  left: -75%;
  top: -75%;
  width: 250%;
  height: 250%;
  background-color: rgba(255,255,255,.05);
  background-repeat: no-repeat;
  background-position: 0 0;
  background-image: conic-gradient(transparent, rgba(255,255,255,.25), transparent 10%);
  -webkit-animation: rotate 5s linear infinite;
          animation: rotate 5s linear infinite;
}

main::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 2px;
  top: 2px;
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  background: #000000;
  border-radius: 2rem;
}

main h1 {
	font-family: var(--font-serif);
  font-size: clamp(5rem, 10vw, 12rem);
  font-weight: 500;
  line-height: 1;
  margin: 0 auto;
	max-width: clamp(90%, 10vw, 80%);
}

main p.meta {
  color: rgba(255,255,255,.35);
  font-size: clamp(min(30vw, .875rem), 1px, max(70vw, 1.25rem));
  font-weight: 700;
  letter-spacing: .25px;
	line-height: 1;
  margin-top: 4rem;
  text-transform: uppercase;
}

