/* Allgemeines Layout */
html {
    background: url(images/tafel.jpg);
    background-attachment: fixed;
    background-size: 100%;
    font-family: sans-serif;
}
/* Navigationsleiste */
body {
	margin: 0px;
}

nav {
	margin-top: 1%;
    width: 100%;
    background-color: #282828;
    height: 50px;
    opacity: 0.8;
}
a { /* Setzt die Farbe des Textes der Links (vorerst) auf weiß und löscht die Linien unter den Links (gibt sonst lustige Striche an der div-box */
	color: white;
	text-decoration: none;
}
.navi {
    float: right;
}
.navi li {
    float: left;
    margin-right: 25px;
    list-style-type: none;
    text-transform: uppercase;
}
.navi li a {
    text-decoration: none;
    color: #fff;
    font-size: 14px;
}
.navi li a:hover {
    text-decoration: underline overline;
    background-color: #282828;
}
/* Überschrift Startseite */
.home-title-div {
    position: fixed;
    color:#fff;
    top: 20%;
    left: 10%;
    font-size: 45px;
    font-weight: bold;
    display: inline;
	text-align: center;
/* Hintergrund der Box */
	width: 30%;
    padding-top: 15px;
	padding-bottom: 15px;
    border-radius: 20px;
	background: rgba(100,100,100,0.4);	
}
/* Inhalt Startseite */
.home-div {
    position: fixed;
    top: 55%;
    left: 55%;
    font-size: 30px;
    color: #fff;
    font-weight: bold;
/* Hintergrund der Box */
	width: 30%;
    padding: 15px;
    border-radius: 20px;
	background: rgba(100,100,100,0.4);	
}
/* Überschrift Unterseiten */
.title-div {
	margin-top: 1%;
	margin-left: 2%;
	margin-right: 2%;
    font-size: 15px;
    color: #FFF;
    font-weight: bold;
	text-align: center;
/* Hintergrund der Box */
    padding-top: 1px;
	padding-bottom: 1px;
    border-radius: 20px;
	background: rgba(100,100,100,0.4);	
}

.div-boxes{
	margin-top: 1%;
	margin-left: 5%;
	margin-right: 0%;
	display: inline-block;
	font-size: 20px;
	color: #FFF;
	text-align: center;	
	/* Hintergrund der Box */
    width: 26.7%;
}

.div-inner-boxes{
	display: inline-block;
	font-size: 20px;
	color: #FFF;
    font-weight: bold;
	text-align: center;	
	/* Hintergrund der Box */
    width: 100%;
    padding-top: 15px;
	padding-bottom: 15px;
    border-radius: 20px;
	background: rgba(100,100,100,0.4);	
}

.div-inhalt-box{
	margin-top: 1%;
	margin-left: 5%;
	margin-right: 5%;
	font-size: 20px;
	color: #FFF;
/*    font-weight: bold; */
	text-align: center;	
/* Hintergrund der Box */
	padding-left: 25px;  
	padding-right: 25px;
	padding-top: 15px;
	padding-bottom: 15px;
	border-radius: 20px;
	background: rgba(100,100,100,0.4);
}

.div-inhalt-box a{
	text-decoration: underline;
}

.div-link-box{
	margin-top: 1%;
	margin-left: 5%;
	margin-right: 5%;
	font-size: 15px;
	color: #FFF;
/*    font-weight: bold; */
	text-align: center;	
/* Hintergrund der Box */
	padding-left: 25px;  
	padding-right: 25px;
	padding-top: 15px;
	padding-bottom: 15px;
	border-radius: 20px;
	background: rgba(100,100,100,0.4);
}

/* Divs für alle Inhalte */
.div-select-box{
	margin-top: 1%;
	margin-left: 5%;
	margin-right: 5%;
	font-size: 15px;
	color: #FFF;
/*    font-weight: bold; */
	text-align: left;	
/* Hintergrund der Box */
	padding-left: 25px;  
	padding-right: 25px;
	padding-top: 15px;
	padding-bottom: 15px;
	border-radius: 20px;
	background: rgba(100,100,100,0.4);
}

.float-right{
	float: right;
}

.float-bottom{
	margin-top: 1%;	
	float: bottom;
	text-align: center;
}

.div-selected{
	margin-top: 1%;
	margin-left: 5%;
	margin-right: 5%;
	font-size: 20px;
	color: #FFF;
	text-align: left;
/* Hintergrund der Box */
	padding-left: 25px; 
	padding-top: 15px;
	padding-bottom: 15px;
	border-radius: 20px;
	background: rgba(100,100,100,0.4);
}
.div-select-box a{ /* Stellt die Unterstreichung der Links wieder dar */
	text-decoration: underline;
}