body {
 background-color: #e8e8e8;
}

html {
	font-family: helvetica, sans-serif;
	font-weight: lighter;
}

@media only screen and (max-width: 48rem) {
	html {
		font-weight: normal;
	}
}

#header {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 4rem;
	background-color: #8fe1ff;
	color: white;
	z-index: 1;
	filter: drop-shadow(0.1rem 0.1rem 0.1rem black);
}

#icon {
	position: absolute;
	height: 3rem;
	top: 0.5rem;
}

#header > * {
	margin-left: 0.5rem;
	margin-top: 0.5rem;
}

#headerLink {
	color: white;
	text-decoration: none;
}

#headerName {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	top: 0.3rem;
}

h1 {
	width: fit-content;
}

h1 {
	margin-left: auto;
	margin-right: auto;
}

@media only screen and (max-width: 48rem) {
	#headerName {
		display: none;
	}
}

#headerSubscribeButton {
	position: absolute;
	background-color: white;
	color: #408fe3;
	right: 1rem;
	top: 0.5rem
}

#headerSubscribeButton:hover {
	color: white;
	background-color: #408fe3;
}

a {
	color: #408fe3;
}

a:hover {
	color: #8fe1ff;
}

button {
	background-color: #408fe3;
	color: white;
	border: none;
	border-radius: 0.8rem;
	font-size: 1rem;
	padding: 0.4rem;
	padding-left: 0.75rem;
	padding-right: 0.75rem;
	transition-property: background-color, color;
	transition-duration: 0.25s;
}

button:disabled {
	background-color: #d3d3d3;
	color: #a9a9a9;
	cursor: not-allowed;
	pointer-events: none;
}

button:hover {
	background-color: #8fe1ff;
}

* {
	line-height: 1.4;
}

#subscriptionPage {
	top: 200%;
	width: 100%;
	height: 100%;
	z-index: 5;
	position: fixed;
	background-color: white;
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	transition: top 0.5s;
}

#subscribeInput {
	width: 10.3rem;
}

#subscriptionButtonsDiv {
	margin-top: 0.5rem;
}

.redText {
	color: red;
}

input[type=checkbox], input[type=radio], label, button, select {
	cursor: pointer;
}