* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  height: 100%;
  line-height: 1.5;
  font-size: 14px;
  background-image: url('../images/truck.jpg');
  background-repeat: no-repeat;
  background-size: cover;
}
/*================COMMON=========================*/
link {
	color: navy;
	text-decoration: none;
	transition: 0.3s all;
	padding: 0 2px;
	display: inline-block;
	margin-bottom: 4px;
}
link:hover {
	background-color: yellow;
}

.list {
	padding-left: 17px;
}
.list li {
	margin-bottom: 2px;
}
.heading {
	padding: 50px 0;
	width: 80%;
	margin: 0 auto;
	text-align: center;
}
.heading h1 {
	font-size: 80px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: -5.5px;
	line-height: 1.1;
}
.heading h2 {
  margin-top: 20px;
  text-transform: uppercase;
  font-weight: 900;
  font-size: 36px;
 }
.yellow {
	color: yellow;
}

@media (min-width: 320px) and (max-width: 767.98px) { 
.heading h1 {
	font-size: 50px;
}
.heading h2 {
	font-size: 20px;
}
}