@import url('https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap');

:root {
	--primary-color: #fe9b00;
	--secondary-color: #20222B;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html, body {
	height: 100%;
	font-family: "Work Sans", sans-serif;
}

body {
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: var(--secondary-color);
}

body:before {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100svh;
	content: "";
	background: url('../img/pattern.png');
	background-size: cover;
	opacity: 0.1;
}

.container {
	position: relative;
	z-index: 10;
	text-align: center;
	padding: 0 1em;
}

.logo {
	max-width: 400px;
	width: 100%;
	height: auto;
	margin-bottom: 1rem;
}

h1 {
	font-size: calc(30px + (48 - 30) * ((100vw - 320px) / (1920 - 320)));
	color: var(--primary-color);
	margin-bottom: 1.5rem;
}

p {
	font-size: 20px;
	color: #fff;
}

.buttons {
	padding-top: 1.5em;
}

.buttons .btn {
	display: inline-block;
	font-size: 1rem;
	font-weight: 600;
	background-color: var(--primary-color);
	color: #fff;
	padding: 0.75rem 1.5rem;
	margin: 0.5rem;
	border-radius: 5px;
	text-decoration: none;
	transition: all 0.35s ease;
}

.buttons .btn:hover {
	background: #fff;
	color: var(--primary-color);
}

@media (max-width: 600px) {

	.buttons .btn {
		padding: 0.5rem 1rem;
		font-size: 0.9rem;
	}
	
}