/* Importáljuk be a desktop.css, innen öröküljünk mindent */
@import url('desktop.css');

/* A betűméret a jobban olvasható Verdana legyen, a háttérkép tünjön el, helyette fekete legyen */
body {
	font-family: Verdana, Arial, Tahoma, Helvetica, sans-serif;
	font-size: 2rem;
	background: none;
	background-color: rgb(0, 0, 0);
}

button#toggleContrast {
	font-size: 1.2rem;
}

/* Fehér (nagy kontrasztú) betűszín mindenhol */
p,
details,
legend,
label {
	color: rgb(255, 255, 255);
	font-size: 2rem;
}

/* Sárgával emeljük ki a fontosabb részeket */
strong,
em {
	color: rgb(255, 255, 0);
}

/* A féjlécek még legyenek nagyobbak pluszba */
h1,
h2,
h3 {
	font-size: 2.3rem;
	color: rgb(255, 255, 0);
}

h1 {
	font-size: 3rem;
}

/* A Boostrap miatt a táblázat külön formázni kell */
#etlap {
	border: 7px solid rgb(255, 255, 255);
}

#etlap td,
#etlap th {
	color: rgb(255, 255, 255);
	background-color: rgb(0, 0, 0);
	border: 3px solid rgb(255, 255, 255);
}

/* Minden link legyen aláhúzva, és nagy kontrasztú */
a {
	text-decoration: underline !important;
}

a:link {
	color: rgb(0, 191, 255) !important;
}

a:visited {
	color: rgb(89, 110, 112) !important;
}

a:hover,
a:active,
a:focus {
	color: rgb(255, 0, 0) !important;
}

/* Navigációs sor linkjei */
nav a:visited {
	color: rgb(0, 191, 255) !important;
}

nav a:hover,
nav a:active,
nav a:focus {
	color: rgb(255, 0, 0) !important;
}

/* Ne legyen háttere */
nav {
	background: none;
}

/* Csak ebben a módban legyen sárga háttere a gombnak, és legyen nagyobb is */
span.navbar-toggler-icon {
	background-color: rgb(255, 255, 0);
	width: 2.5em;
	height: 2.5em;
}

/* Űrlap */
input[type='submit'],
input[type='reset'] {
	color: rgb(255, 255, 255);
	font-size: 2.5rem;
}
