@font-face { font-family: Brandon; src: url('BrandonText-Black.otf'); }

*
{
	box-sizing: border-box;
	letter-spacing: 0.1em;
}

html
{

}

body
{
	min-height: 100vh;
	margin: 0;
	padding: 10px;

	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;

	font-family: Brandon, sans-serif;
	font-size: 1.2rem;
	color: black;
	background-image: url('bg.jpg');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.content-box
{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 80px;
	padding: 20px;
	max-width: 100%;
	text-align: center;
}

h1, h2, h3, h4, h5, h6
{
	text-transform: uppercase;
	margin: 0;
}

h1
{
	font-size: 6rem;
}

h2
{
	font-size: 2.4rem;
}

.services
{
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 10px;
}

.services span
{
	font-size: 0.6rem;
}

.contact-info
{
	margin-top: 50px;
	margin-bottom: 0;
}

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

.testbox
{
	display: block;
	width: 100%;
	height: 300px;
	background-color: red;
	margin-bottom: 50px;
}


@media (max-width: 768px)
{
	.content-box
	{
		gap: 50px;
	}

	h1
	{
		font-size: 3rem;
	}

	h2
	{
		font-size: 1.8rem;
	}

	.services
	{
		flex-direction: column;
		gap: 10px;
	}

	.contact-info
	{
		margin-top: 0;
		display: flex;
		flex-direction: column;
	}

	.bullet
	{
		display: none;
	}
}
