/* Fonts
/* ---------------------------------------------------------- */

@font-face {
	font-family: "Swanky";
	src: url("../fonts/Swanky.ttf");
}

@font-face {
	font-family: "Chewy";
	src: url("../fonts/Chewy.ttf");
}

/* Variables
/* ---------------------------------------------------------- */

:root {
	--font-title: "Swanky", sans-serif;
	--font-body: "Chewy", sans-serif;

	--padding-content: 1rem;
	--padding-section: 2rem;

	--color-primary: #c0cfb2;
	--color-secondary: #8ba888;
	--color-tertiary: #44624a;
	--color-background: #809bce;
}

/* Reset
/* ---------------------------------------------------------- */

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

html {
	overflow-x: hidden;
	overflow-y: scroll;
	font-size: 62.5%;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
	min-height: 100vh;
	margin: 0;
	padding: 0;
	font-size: 1.5rem;
	line-height: 1.6em;
	font-weight: 400;
	font-style: normal;
	background: #fff;
	scroll-behavior: smooth;
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

p,
ul,
ol,
li,
dl,
dd,
hr,
pre,
table,
video,
figure,
figcaption,
blockquote {
	margin: 0;
	padding: 0;
}

ul[class],
ol[class] {
	padding: 0;
	list-style: none;
}

img {
	display: block;
	max-width: 100%;
}

input,
button,
select,
textarea {
	font: inherit;
}

hr {
	position: relative;
	display: block;
	width: 100%;
	height: 1px;
	border: 0;
	border-top: 1px solid currentcolor;
	opacity: 0.2;
}

::selection {
	text-shadow: none;
	background: #cbeafb;
}

mark {
	background-color: #fdffb6;
}

small {
	font-size: 80%;
}

sub,
sup {
	position: relative;
	font-size: 75%;
	line-height: 0;
	vertical-align: baseline;
}
sup {
	top: -0.5em;
}
sub {
	bottom: -0.25em;
}

a:not([class]) {
	color: color(var(--color-primary) l(-5%));
	text-decoration-skip-ink: auto;
}

a[class] {
	color: inherit;
	text-decoration: none;
	transition: 0.4s ease;
}

a[class]:hover {
	transition: 0.2s ease;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
	line-height: 1.1em;
	font-weight: 700;
}

h1 {
	font-size: 4.6rem;
	letter-spacing: -0.5px;
}

h2 {
	font-size: 3.4rem;
}

h3 {
	font-size: 3.0rem;
}

h4 {
	font-size: 2.6rem;
}

h5 {
	font-size: 2.4rem;
}

h6 {
	font-size: 2.2rem;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
	* {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	}
}

/* Main
/* ---------------------------------------------------------- */

body {
	font-family: var(--font-body);
	/* background-color: var(--color-background); */
	background-image: url("../images/cloud.jpg");
	background-size: 400px 400px;
}

html {
	overflow: scroll;
	overflow-x: hidden;
}

.title {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding-top: var(--padding-section);
}

.title h1,h2,h3,h4,h5,h6 {
	font-family: var(--font-title);
}

/* Notices
/* ---------------------------------------------------------- */

.notice-hidden {
	display: none;
	visibility: hidden;
}

/* Section
/* ---------------------------------------------------------- */

.section {
	padding-top: var(--padding-section);
	display: flex;
	align-items: center;
	justify-content: center;
}

.content {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: var(--padding-content);
}

.content img {
	max-height: 400px;
	max-width: 400px;
}

/* Testimony
/* ---------------------------------------------------------- */

.testimony {
	border-width: 4px;
	border-style: double;
	display: flex;
	flex-direction: row;
	padding: var(--padding-content);
	gap: var(--padding-content);
}

.testimony img {
	max-height: 400px;
	max-width: 200px;
}

.testimony .quote {
	align-self: center;
	max-width: 400px;
}

.testimony .quote .quoted {
	font-weight: bold;
}