/* Variables */

:root {
	--primary: #d54970;
	--white: #ffffff;
  --dark: #32161e;
	--muted: #b4b4b4;
}

/* Utilities */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
	color: var(--dark);
}

a,
.highlight {
	color: var(--primary);
}

a:hover,
a:focus {
	color: var(--primary);
}

ul {
	padding-left: 2rem;
}

ul li {
	margin-bottom: .5rem;
}

ul li::marker {
	color: var(--primary);
}

.mb-1 {
	margin-bottom: 1rem;
}

.text-center {
	text-align: center;
}

/* Layout */

.scroll-prompt {
	color: var(--muted);
	position: fixed;
	bottom: 2rem;
  text-align: center;
	font-size: 1rem;
	line-height: 3rem;
	width: 100%;
	z-index: 10;
}

.intro {
  width: 100%;
  height: 100vh;
  position: relative;
  clip-path: circle(5%);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.intro-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--white);
  z-index: 4;
}

.company {
	color: var(--white);
  font-size: 5rem;
  padding-bottom: 1rem;
}

.tagline {
	color: var(--white);
  font-size: 1.5rem;
}

.intro-edge {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: -6.5rem;
	position: relative;
}

.intro-edge img {
	width: 100%;
	max-width: 20rem;
}

.blend {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: .3;
}

.content-wrapper {
	padding: 0 2rem;
	max-width: 40rem;
}

.welcome {
  display: flex;
	flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 8rem;
}

.welcome .title {
  font-size: 3rem;
}

.welcome .lead {
	font-size: 1.25rem;
	margin: 2rem 0;
}

/* Logo */

.intro-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(.5);
  z-index: 4;
}

/* Video */

.intro video {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

/* Footer */

.footer {
	margin-top: 8rem;
}
