@import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@200;300;400;600&display=swap');

* {
	margin: 0;
	padding: 0;
}

html,
body {
	box-sizing: border-box;
	font-size: 62.5%;
	font-family: 'Work Sans', sans-serif;
}

div,
nav,
header {
	position: relative;
}

h1 {
	font-size: clamp(5.5rem, 5vw, 9rem);
}

h4 {
	font-size: clamp(1.6rem, 1.2vw, 2rem);
}

p {
	font-size: 1.2rem;
}

a {
	font-size: 1.7rem;
	font-weight: 700;
}

a {
	text-decoration: none;
	color: #000;
}

/* Elements */
.btn {
	padding: 1.7rem 1rem;
	background-color: #f26722;
	width: 15.8rem;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 5px;
	color: #000;
	margin-top: 1.5rem;
	cursor: pointer;
}

.btn a {
	color: #fff;
}

/* Main */
.wrapper {
	width: 100vw;
	height: 100vh;
}

.ctr {
	max-width: 1480px;
	margin: 0 auto;
}

nav {
	display: flex;
	padding: 2rem 0;
	padding: 0;
	height: 8%;
}

nav .logo-ctr {
	flex-grow: 1;
	display: flex;
	align-items: center;
	justify-content: center;
}

nav .logo-ctr .logo-inner-ctr {
	width: 263px;
}

nav .logo-ctr img {
	width: 100%;
	cursor: pointer;
}

header {
	height: 77%;
	background-image: url(images/kitchen.jpeg);
	background-size: cover;
	background-position: center;
}

.hdr-overlay {
	background-color: rgba(0, 0, 0, 0.63);
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.hdr-overlay .hdr-ctr {
	color: white;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	max-width: clamp(77% 88%, 100%);
	margin: auto 2.5rem;
}

.hdr-overlay .hdr-ctr h1 {
	text-transform: uppercase;
}

.hdr-overlay .hdr-ctr h4 {
	margin: 3rem 0;
}

footer {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 15%;
	background-color: black;
	color: grey;
	text-align: center;
	flex-direction: column;
}

footer p {
	margin: 0.7rem 2.5rem;
	font-size: 1.5rem;
}
