* {
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	margin: 0;
	padding: 0;
}


@font-face {
  font-family: 'ITC Avant Garde Gothic';
  src: url('fonts/ITCAvantGardeStd-Bk.woff2') format('woff2'),
       url('fonts/ITCAvantGardeStd-Bk.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'ITC Avant Garde Gothic';
  src: url('fonts/ITCAvantGardeStd-BkObl.woff2') format('woff2'),
       url('fonts/ITCAvantGardeStd-BkObl.woff') format('woff');
  font-weight: normal;
  font-style: italic;
}
@font-face {
  font-family: 'ITC Avant Garde Gothic';
  src: url('fonts/ITCAvantGardeStd-Bold.woff2') format('woff2'),
       url('fonts/ITCAvantGardeStd-Bold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: 'ITC Avant Garde Gothic';
  src: url('fonts/ITCAvantGardeStd-BoldObl.woff2') format('woff2'),
       url('fonts/ITCAvantGardeStd-BoldObl.woff') format('woff');
  font-weight: bold;
  font-style: italic;
}
@font-face {
  font-family: 'Signalist';
  src: url('fonts/signalist.woff2') format('woff2'),
       url('fonts/signalist.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

:root {
	--color-black: #070707;
  --color-yellow: #ffeb00;
  --font-signalist: 'Signalist', sans-serif;
}

html {
	height: 100%;
	font-family: 'ITC Avant Garde Gothic', sans-serif;
	font-size: 16px;
	color: white;
	background-color: var(--color-black);
}

body {
	width: 100%;
	display: flex;
	justify-content: center;
	padding: 3rem 4rem;
}

p {
	font-size: 0.9rem;
	line-height: 1.5em;
	margin-bottom: 2rem;
}

a {
	color: inherit;
	transition: color 0.3s;
	text-decoration: none;
}

a:hover {
	color: var(--color-yellow);
}

h1 {
	font-family: var(--font-signalist);
	font-size: 3.2rem;
	letter-spacing: 0.15rem;
	color: var(--color-yellow);
	font-weight: normal;
	font-style: normal;
	padding-bottom: 3rem;
}

h2 {
	font-weight: normal;
	font-style: normal;
	font-size: 1.5rem;
	padding-bottom: 0.5rem;
}

.block-1 {
	margin-right: 5rem;
}

.logo {
	margin-bottom: 2rem;
	max-width: 30rem;
	width: 100%;
}

.content {
	max-width: 27rem;
	text-align: left;
}

.pictos {
	margin-bottom: 2.2rem;
}

.email {
	font-size: 1.8rem;
	display: block;
	padding-top: 2rem;
}

.block-2 {
	text-align: center;
	padding-bottom: 3rem;
}

.illus {
	width: 100%;
	position: relative;
	z-index: 1;
}

.contact {
	display: inline-block;
	background-color: var(--color-yellow);
	color: var(--color-black);
	padding: 0.2rem;
	margin-top: -1.8rem;
	font-size: 0.9rem;
}

.contact > div {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 0.5rem 1.2rem;
	border: 0.2rem solid var(--color-black);
}

.contact img {
	width: 8rem;
	display: block;
}

.contact .base {
	font-family: var(--font-signalist);
	font-size: 1.6rem;
	line-height: 1.2rem;
	letter-spacing: 0.1rem;
	padding-bottom: 0.3rem;
}

.contact .asso {
	font-size: 0.7rem;
	font-weight: bold;
	padding-bottom: 0.3rem;
}

.contact a:hover {
	color: inherit;
	text-decoration: underline;
}

.newsletter {
	padding-top: 2rem;
}

.newsletter h2 {
	font-size: 1.1rem;
}

.newsletter input {
	border: none;
	border-radius: 0;
	background-color: white;
	height: 1.5rem;
	padding: 0.5rem;
	margin: 0;
	outline: none;
}

.newsletter button {
	display: inline-flex;
  align-items: center;
  justify-content: center;
	border: none;
	border-radius: 0;
	color: var(--color-black);
	background-color: var(--color-yellow);
	cursor: pointer;
	height: 1.5rem;
	padding: 0.5rem;
	margin: 0;
	outline: none;
	vertical-align: middle;
	transition: color 0.3s;
}

.newsletter button:hover {
	background-color: white;
}

.message-box {
	min-height: calc(100vh - 6rem);
	display: flex;
	align-items: center;
	text-align: center;
}

@media all and (max-width: 1024px) {
  body {
		flex-direction: column;
		align-items: center;
		padding: 3rem 2rem;
	}
	.block-1 {
		margin-right: 0;
		padding-bottom: 1rem;
	}
}
@media all and (max-width: 414px) {
  .contact {
		margin-top: -1rem;
	}
}