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

html,
body,
div,
span,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
img {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

:root {
	--Font-family-Display: "Byrd", sans-serif;
	--Font-family-Body: Manrope, sans-serif;
	--Font-size-Hero-md: 60px;
	--Font-size-Text-xl: 20px;
	--Line-height-Hero-md: 72px;
	--Line-height-Text-xl: 30px;
}

@font-face {
	font-family: "Byrd";
	src: url("../fonts/byrd.woff2") format("woff2"),
		url("../fonts/byrd.woff") format("woff");
	font-weight: 600;
	font-style: normal;
	font-display: swap;
}

html {
	height: 100%;
}

body {
	font-family: var(--Font-family-Body);
	background-color: #1b67f6;
	margin: 0;
	height: 100%;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	padding: 80px;
	box-sizing: border-box;
}

.warning-message {
	max-width: 751px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 48px;
}

.logo {
	margin-bottom: 0;
}

.logo img {
	width: 80px;
	height: auto;
}

h1 {
	color: #fff;
	font-family: var(--Font-family-Display);
	font-size: var(--Font-size-Hero-md);
	font-style: normal;
	font-weight: 600;
	line-height: var(--Line-height-Hero-md);
	letter-spacing: -1.2px;
	margin: 0;
}

.warning-message-text {
	width: 100%;
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	flex-direction: column;
	gap: 8px;
}

p {
	color: #fff;
	font-family: var(--Font-family-Body);
	font-size: var(--Font-size-Text-xl);
	font-style: normal;
	font-weight: 400;
	line-height: var(--Line-height-Text-xl);
	margin: 0;
}

.phone-number {
	color: #fff;
	font-family: var(--Font-family-Body);
	font-size: 14px;
	font-style: normal;
	font-weight: 700;
	background-color: #3187ff;
	padding: 12px 16px;
	border-radius: 54px;
	display: inline-block;
	line-height: 10px;
	transition: all 0.3s ease;
	border: 1px solid #3187ff;
	text-decoration: none;
}

.phone-number:hover {
	background-color: #1350e2;
	border: 1px solid #1350e2;
	text-decoration: underline;
}

/* Media Query for mobile */
@media (max-width: 768px) {
	body {
		padding: 40px 20px;
		justify-content: center;
		align-items: flex-start;
	}

	.warning-message {
		gap: 32px;
		height: 80%;
		justify-content: center;
	}
	.warning-message-text {
		max-width: 230px;
	}

	.logo img {
		width: 60px;
	}

	h1 {
		font-size: 36px;
		line-height: 44px;
		letter-spacing: -0.72px;
	}

	p {
		font-size: 16px;
		line-height: 19px;
	}

	.phone-number {
		font-size: 14px;
		padding: 10px 14px;
		margin-top: 10px;
		margin-bottom: 16px;
	}
}
