/*
 *  Copyright (c) 2019 Scott Huutsch
 */

.header {
	text-align: center;
	font-weight: 600;
} 

.minus {
	text-align: right;
	color: red;
} 

.plus {
	text-align: right;
} 

.text {
	text-align: left;
} 

div {
	padding: 3px;
}

table, td {
	border: 1px;
	border-style: solid;
	margin: 0;
	border-spacing: 0;
	padding: 0;
}

@media (min-width: 950px) {
   /* breite Browserfenster */
	body {
		font-size: 20px;
		width: 950px;
	}
}
@media (min-width: 450px) and (max-width: 950px) {
   /* Darstellung auf Netbooks */
	body {
		font-size: 18px;
		width: 450px;
	}
} 
@media (max-width: 450px) {
     /* mobile Geräte */
	body {
		font-size: 11px;
		width: 320px;
	}
}
