/* :root *******************************/

:root {
	--color-dark: #222;
	--color-light: #f7f7f7;
	--color-gray: #ccc;
	--color-danger: #DC3545;
	--color-success: #198754;
	--color-warning: #ffc107;
	--color-background: #222;
	--color-text: #ccc;
	--color-link: #0b3259;
	--color-brand-primary: #941f9b;
	--color-brand-secondary: #0b3259;
	--color-brand-pop: #A6FF4D;
	--color-input-bg: #f8f9fa;
	--color-input-border: #ccc;
	--color-input-shadow: 0 0 0 5px #cff4fc;
	--font-default: Helvetica, 'DM Sans', Arial, sans-serif;
	--font-brand: "Special Elite";
}

html, body {
	height: 100%;
	overscroll-behavior: none;
}

body {
	background-color: var(--color-background);
	color: var(--color-text);
	font-family: var(--font-brand);
	font-size: 1rem;
}

h1, h2, h3, h4, h5, h6 {
	color: #fff;
	font-size: 1rem;
	font-weight: 900;
	margin-bottom: 0;
	text-shadow: 2px 2px 4px #000;

  img {
    height: 40px;
    width: auto;
  }

	strong {
    text-decoration: underline;
    text-decoration-color: var(--color-brand-primary);
    text-underline-offset: 5px;
    text-decoration-thickness: 5px;
	}

	span {
		background-color: #000;
		color: var(--color-brand-pop);
	}
}

h1 {
  font-size: 1.5rem;
}

h2 {
  font-size: 2.2rem;
}

h3 {
  font-size: 1.8rem;
}

h4 {
  font-size: 1.2rem;
}

a {
	color: var(--color-link);

	&:hover {
		color: var(--color-link);
		text-decoration: none;
	}

	&:focus {
		outline: 1px dashed #999;
		outline-offset: 5px;
	}
}

button {
	background: transparent;
}

img {
	height: auto;
	width: 100%;
}

p {
	font-size: 1.2rem;
	margin-bottom: 0;
}

strong {
	color: #fff;
}

label {
	font-weight: 600;
	margin-bottom: 5px;
}

ul {
	margin: 0;

	li {
		margin: 0;
		padding: 0;

		&::marker {
	  	color: var(--color-brand-primary);
			font-size: 1.3rem;
			line-height: 1.3rem;
		}
	}
}

/* iPhone 14 plus 430px by 926px */
@media (min-width: 430px) {

	h1 {
		font-size: 2rem;
	}

}