@charset "utf-8";
/* 
	Author :: Elodie BAYET
	Origin :: Belgium, EU
	  Role :: Fullstack Web Developer
	  Date :: 2018.08 + 2022.03 + 2025.01
*/

/*
Part I : Base
	•• Normalize
	•• Typography
	•• Composition
*/

/*
	Normalize
*/
html {
	font-family: Verdana, sans-serif;
	font-size: .625em;
}

body { 
	-webkit-text-size-adjust: none;
	min-height: 100vh;
}

body, body *, body *::before, body *::after { 
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

ul, ol { 
	list-style: none;
}

abbr, button, select,
a, a:link, a:visited, a:hover, a:focus, a:active { 
	text-decoration: none;
}
button, img, hr, iframe,
fieldset, input, input:invalid, textarea, select, 
a img, a:link img, a:visited img, a:hover img, a:focus img, a:active img { 
	border: none;
}
input:invalid, textarea:invalid {
	box-shadow: none;
}
button:not(:disabled):hover,
select:not(:disabled):hover,
input[type="submit"]:not(:disabled):hover,
input[type="reset"]:not(:disabled):hover,
input[type="button"]:not(:disabled):hover {
	cursor: pointer;
}
button, select {
	text-transform: none;
}
img { 
	width: 100%;
	height: auto;
}

/*
	Typography
*/
h1 {
	font-size : 4.2rem;
	font-weight: 400;
}
h2 {
	font-size: 3.6rem;
	margin-bottom: 2.7rem;
}
h3 {
	font-size: 3.0rem;
	margin-bottom: 2.1rem;
}
h4 {
	font-size: 2.4rem;
	margin-bottom: 1.8rem;
}
h5 {
	font-size: 1.8rem;
	margin-bottom: 1.2rem;
}
h1, h2, h3, h4 {
	line-height: 1.5;
	letter-spacing: .1rem;
}
h6, p, li, a.button,
noscript, legend, time, button,
input, select, textarea, label {
	font-size: 1.4rem;
	line-height: 1.75;
	margin: 1.2rem 0;
}
figcaption {
	font-size: 1.2rem;
	letter-spacing: .1rem;
	line-height: 1.5;
	margin-top: 9px;
}
small {
	font-size: 86%;
}
strong {
	font-weight: 600;
}
em {
	font-style: italic;
}
sup, sub {
	font-size: 80%;
	text-transform: lowercase !important; /* force to lower */
}
sup {
	vertical-align: super;
}
sub {
	vertical-align: bottom;
}
h1 + p {
	margin-top: 0;
}


/*
	Composition
*/

/* Interface */
header, main, footer {
	margin-left: auto;
	margin-right: auto;
	max-width: 1064px;
	padding: 36px 0;
}
header, footer {
	text-align: center;
}
noscript {
	display: block;
	padding: 12px;
}

header a.button {
	font-size: 1.4rem;
	line-height: 1.75;
}
header nav ul {
	margin: 0 -1.875%;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
header nav ul li {
	margin: .5% 1.875%;
}
header nav ul li a {
	font-size: 1.8rem;
	text-transform: uppercase;
	letter-spacing: .2rem;
	margin: 0;
	padding: 6px;
	display: block;
}

.applogo {
	display: inline-block;
}

/* Content */
main section {
	padding: 0 3.75%;
	position: relative;
}
main section + section {
	margin-top: 36px;
}


/* Columns and grid System */
@media screen and (min-width: 720px) {
	.columns {
		column-count: 2;
		column-gap: 3.75%; 
	}
	.columns h3, .columns h4,
	.columns h5, .columns h6 {
		break-after: avoid;
	}
	.columns *:first-child {
		margin-top: 0;
	}
}
@media screen and (min-width:768px) {
	.flex {
		margin: 0 -1.875%;
		flex-wrap: wrap;
		justify-content: flex-start;
		display: flex;
	}
	.flex > [class*="col"] {
		padding-left: 1.875%;
		padding-right: 1.875%;
	}
	.flex > .col-50,
	.flex > .col-25 {
		width: 50%;
	}
}
@media screen and (min-width:1024px) {
	.flex > .col-25 {
		width: 25%;
	}
}

hr {
	margin: 24px 0;
	padding: 1px 0 0;
	border-top: 1px solid var(--light);
}


/*
	Author
*/

#author {
	text-align: center;
}
#author p, #author a {
	color: rgb(64, 58, 58);
	font-size: 1.2rem;
	line-height: 1.5;
}
#author * { 
	display: inline-block;
	vertical-align: bottom;
}
#author a {
	color: rgb(128, 32, 18);
	margin-top: 0;
	margin-bottom: 0;
}
#author a:focus, #author a:hover {
	color: rgb(0, 0, 0);
}
#author img {
	width: 18px;
	display: inline-block;
	margin-top: -6px;
	margin-left: 3px;
}
