:root {
	font-family: "Montserrat", sans-serif;
}

html {
	width: 100vw;
	display: flex;
	justify-content: center;
	align-items: start;
}

body {
	margin: 20px;
	width: 100vw;
	height: auto;
}

@media only screen and (min-width: 1000px) {
	body {
		width: 1000px;
	}
}

h1 {
	font-weight: 900;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-evenly;
}

img {
	height: 100px;
	margin: 5px;
}

#Anmeldungsbuttoncontainer {
	width: 100%;
	display: flex;
	justify-content: center;
}

#Anmeldungsbutton {
	width: 400px;
	font-weight: 600;
	font-size: 20px;
	padding: 15px;

}

form {
	width: 100%;
	display: flex;
	flex-direction: column;
}

input {
	margin: 3px;
}

input[type=submit] {
	padding: 8px 15px;
	border-radius: 5px;
	display: flex;
	align-items: center;
	text-decoration: none;
	color: #FFFFFF;
	font-family: "Montserrat", sans-serif;
	font-size: 15px;
	border: white solid 2px;
	background-color: #990000;
	box-shadow: 2px 2px #CCCCCC;
}

input[type=text] {
	border-radius: 5px;
	border: black solid 2px;
	height: 20px;
}  

a {
	margin-top: 10px;
	width: 150px;
	padding: 8px 15px;
	border-radius: 5px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	color: #FFFFFF;
	font-size: 15px;
	border: white solid 2px;
	background-color: #990000;
	box-shadow: 2px 2px #CCCCCC;
}

#Tabellen {
	display: grid;
	grid-template-columns: 1fr;
}

@media only screen and (min-width: 900px) {
	#Tabellen {
		grid-template-columns: 1fr 1fr;
		
	}
}

#Spielplaene {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-gap: 10px;
	text-align: center;
}

#Spielplaene a {
	width: auto;
}

#Spielplaene .GSpielplan{
	grid-column: span 1;
}

#Spielplaene .KOSpielplan{
	grid-column: span 3;
}

#Finalrunden {
	display: flex;
	flex-direction: column;
	width: 100%;
}

#Finalrunden div{
	display: flex;
	flex-direction: column;
	width: 100%;
	align-items: center;
}

#Finalrunden div a{
	width: 50%;
}
