.header {
	background-color: gray;
	display: grid;
    grid-template-columns: 1fr 3fr;
    grid-gap: 20px;
}

.header-text p {
	font-size: 225%;
	color: white;
}

.header-text .header-text-small-top {
	margin-bottom: 0px;
}

.header-text .header-text-small-bottom {
	margin-top: 0px;
}

@media only screen and (max-width: 575px) {
	.header-text-small {
		display: block;
	}
	.header-text-large {
		display: none;
	}
	
	.header-img img {
		width: 125px;
	}
}

@media only screen and (min-width: 576px) {
	.header-text-small {
		display: none;
	}
	.header-text-large {
		display: block;
	}
	
	.header-img img {
		width: 150px;
	}
}
