* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    display: flex;
    flex-direction: column;
    height: 100vh;
}

main{
    flex: 1;
}

h1 {
	text-align: center;
	text-transform: uppercase;
	color: #E52322;
	font-weight: 700;
	font-family: 'Roboto', sans-serif;
	margin: 20px 0;
}

h2 {
	text-align: left;
	text-transform: uppercase;
	color: #E52322;
	font-weight: 700;
	font-family: 'Roboto', sans-serif;
}

@media screen and (max-width: 1023px) {
	main {
		background: none;
	}
}