body {
  font: normal 13px/20px Arial, Helvetica, sans-serif;
  word-wrap: break-word;
  color: #eee;
  #background: #353535;
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
  min-height: 100vh;
}


.hintergrund-login {
	background: url("http://tactics.potti24.de/img/soldier.jpg") no-repeat center center fixed;
	min-height: 97vh;
    background-size: cover;
}

.hintergrund {
	background: url("http://tactics.potti24.de/img/camo.jpg") no-repeat center center fixed;
	min-height: 97vh;
    background-size: cover;
}

.login {
  padding: 80px;
  text-align: center;
  #background: #1abc9c;
  color: black;
  font-size: 50px;
	text-decoration: blink;
}

input[type="password"] {
   font-size: 20px; padding: 5px 12px; 
   font-family: Roboto, sans-serif;
   font-weight: 300;
   color: teal;
   border: 1px solid silver;
   background-image: linear-gradient(to top, gainsboro 0%, white 90%);
   border-radius: 10px;
}

input[type="submit"] {
   font-size: 20px; padding: 5px 12px; 
   font-family: Roboto, sans-serif;
   font-weight: 300;
   color: black;
   border: 1px solid silver;
   background-image: linear-gradient(to top, gainsboro 0%, white 90%);
   border-radius: 10px;
}





{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 62.5%;
    
}

li {
    list-style: none;
}

a {
    text-decoration: none;
}

.header{
    border-bottom: 1px solid #E2E8F0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2.5rem;
}

.hamburger {
    display: none;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background-color: #101010;
}

.nav-menu {
    display: flex;
    justify-content: space-between;
    align-items: center;	
}

.nav-item {
    margin-left: 3rem;
}

.nav-link{
    font-size: 1.6rem;
    font-weight: 400;
    color: #475569;
}

.nav-link:hover{
    color: red;
}

.nav-logo {
    font-size: 2.1rem;
    font-weight: 500;
    color: #44514a;
}

@media only screen and (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 5rem;
        flex-direction: column;
        background-color: lightgrey;
        width: 100%;
        border-radius: 10px;
        text-align: center;
        transition: 0.3s;
        box-shadow:
            0 10px 27px rgba(0, 0, 0, 0.05);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        margin: 2.5rem 0;
    }

    .hamburger {
        display: block;
        cursor: pointer;
    }

}



// Inside the Media Query.

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }



.flex-container {
  display: flex;
  background-color: grey;
  justify-content: center;
  align-items: baseline center;
  flex-wrap: wrap;
}

.flex-item {
  background-color: white;
  min-width: 95%	;
  margin: 10px;
  text-align: center;
  line-height: 20px;
  font-size: 24x;
  color: black;
}

.flex-item2 {
  background-color: #6a7169;
  min-width: 95%	;
  margin: 10px;
  text-align: center;
  line-height: 10px;
  font-size: 34x;
  color: black;
  flex-wrap: wrap;
  align-content: center;
  border-radius: 30;
}


.todoBtn {
  padding: 5px;
  min-width: 90px;
//  background: #d9d9d9;
  background: lightgreen;
  color: #555;
  float: left;
  text-align: center;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
  border-radius: 0;
  color: black;

}

.todoBtn:hover {
  background-color: green;
}

.todoBtn2 {
  padding: 5px;
  min-width: 90px;
//  background: #d9d9d9;
  background: red;
  color: #555;
  float: left;
  text-align: center;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
  border-radius: 0;
  color: black;
}

.todoBtn2:hover {
  background-color: darkred;
}

.dlBtn {
  padding: 5px;
  min-width: 90px;
//  background: #d9d9d9;
  background: lightgrey;
  color: #555;
  float: left;
  text-align: center;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
  border-radius: 0;
  color: black;
}

.dlBtn:hover {
  background-color: grey;
}


.table {
	width: 100%;
//	table-layout: fixed;
}

tr {
	font-size: 16px;
//  border-bottom: 1px solid #ddd;
}
//tr:hover {background-color: grey;}

th, td {
	padding: 5px;
}

tr, td {
//	max-width: 250px;
//	width: 50%;
	line-height: 20px;
		border: thin solid;
}


.spalte1 {
	min-width: 30px;
	max-width: 35px;
}
.spalte2 {
	width: 90%;
}
.spalte3 {
	min-width: 90px;
	max-width: 95px;
}
.spalte4 {
	min-width: 100px;
	max-width: 105px;
}


.spalte1dl {
	min-width: 90%;
}
.spalte2dl {
	width: 100px;
}


// tr:nth-child(even) {
//  background-color: lightgrey;
// }

