/* Reset de base */
*,
*::before,
*::after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	font-size: 100%; /* 1 rem = 16px */
	line-height: 1.5;
}

body {
	font-family: sans-serif;
	color: #fff;
	background-image: url(images/domaine-patissiere-background.jpg);
	background-size: cover;
	background-position: center center;
	height: 100vh;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 20px;
}

ul,
ol {
	list-style: none;
}

a {
	text-decoration: none;
	color: inherit;
}

img,
video {
	max-width: 100%;
	height: auto;
}

/* custom styles */
.container {
	width: 100%;
	height: 100%;
	text-align: center;
	align-content: center;
}

#logo {
	width: 300px;
	margin-bottom: 100px;
}

.link-button {
	border: 1px solid #fff;
	color: #fff;
	text-transform: uppercase;
	padding: 25px 25px;
	letter-spacing: 3px;
	font-size: 13px;
	display: inline-block;
	transition: all ease 0.3s;
}

.link-button:hover {
	background: rgba(255, 255, 255, 0.2);
}

footer {
	text-align: center;
	text-transform: uppercase;
	font-size: 12px;
	letter-spacing: 2px;
	margin-bottom: 70px;
	color: rgba(255, 255, 255, 0.8);
}