html {
  box-sizing: border-box;
}

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

body {
	margin: 0;
	padding: 0;
	border-bottom: 20px solid #ff00b1;
	font-family: 'Montserrat', sans-serif;
	font-weight: 400;
}

a {
	color: #0089ff;
	font-weight: 600;
	text-decoration: none;
	transition: 0.3s;
}
a:hover {
	color: #1e97ff;
	text-decoration: underline double;
}

figure {
	margin: 0; 
}
figcaption {
	color: #666;
	font-size: 0.8rem;
	font-weight: 800;
	letter-spacing: 0.1rem;
	text-align: center;
}

img {
	max-width: 100%;
	border-radius: 10px;
}

blockquote {
	margin: 4rem 0;
	background: #eee;
	padding: 4rem;
	font-size: 1.8rem;
	border-radius: 4rem;
	font-weight: 600;
}

small {
	display: block;
	text-align: center;
}

.wrapper {
	max-width: 50rem;
	margin: 0 auto;
	padding: 0 0 10rem;
}
h2 {
	margin: 1.5rem 2rem;
	font-size: 2rem;
}
h3 {
	margin: 0.8rem 2rem;
	font-size: 1.8rem;
}
h4 {
	margin: 5rem 2rem 0.8rem 2rem;
	font-size: 1.4rem;
}
p {
	max-width: 50rem;
	margin: 0 0;
	padding: 0.5rem 2rem;
	font-size: 1.2rem;
}
ul {
	max-width: 50rem;
	margin: 0 0;
	padding: 0.5rem 4rem;
}
ul > p {
	padding: 0.5rem 0;
}
ul > li {
	padding: 0.25rem 0;
	font-size: 1.2rem;
	list-style-type: circle;
	list-style-position: outside;
}
cite {
	display: block;
	padding: 0.5rem 0 0.25rem 0.3rem;
	font-size: 0.8rem;
	font-style: normal;
	font-weight: 800;
	letter-spacing: 0.05rem;
	text-transform: uppercase;
}


.flex {
	display: flex;
	flex-wrap: wrap;
}
.flex.flex-column {
	flex-direction: column;
}
.flex img {
	max-width: 100%;
}
.flex .column {
	flex: 1 1 auto;
}
.flex .column.flex-50 {
	flex-basis: 50%;
}

.no-scroll {
	overflow: hidden;
}

.modal-container {
	display: none;
	position: fixed;
	width: 100vw;
	height: 100vh;
	top: 0;
	left: 0;
	background: rgba(0,0,0,0.8);
	transition: 0.3s;
}
.modal-container.shown {
	display: flex;
	align-items: center;
	justify-content: center;
}
.modal-container > button {
	position: fixed;
	top: 1rem;
	right: 0.5rem;
	background: none;
	border: none;
	cursor: pointer;
}
.modal-container > button > svg {
	fill: #fff;
	width: 50px;
	height: 50px;
}
.modal-container > iframe {
	width: 90vw;
	height: 90vh;
	background: url(/loader.gif) no-repeat center #fff;
}
