:root {
  --color-text: black;
  --color-background: white;
}

@media (prefers-color-scheme: dark) {
  :root {
    --color-text: white;
    --color-background: black;
  }
}

body {
	color: var(--color-text);
	background-color: var(--color-background);
	margin: 0px;
}

.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;
	}
}

.header-img img {
	margin-top: 5px;
}