@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root{
	--main-brand-color: #B6232A; 
	--primary-color: #000000;
	--secondary-color: #AB2C34; 
	--light-secondary-color: #581A1A;
	--text-color: #FFFFFF; 
	--secondary-text-color: #B3B4B6;
}

*{
	margin: 0;
	padding: 0;
}

body{
	padding: 70px 0;
	min-height: 100vh;
	background-color: #B6232A ;
	font-family: 'Poppins', sans-serif;
	font-size: 20px;
	color: var(--text-color);
}

h1{
	font-size: 100px;
	line-height: 115%;
}

h2{font-size: 50px;
	text-align: center}

h3{
	font-size: 38px;
	
}
a{color: #FFFFFF}

.subheading{
margin-top: 25px;
	color: var(--secondary-text-color);
}

@media(max-width: 800px){
	h1{
		font-size: 12vw;
		text-align: center;}
	.subheading{text-align: center;
	}
	body{
		font-size: 16px;
	}
}