/* CSS Document */
*{
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  font-family: 'Varta', sans-serif;
  font-weight: bold;
  font-size: 18px;
}

nav {
    list-style: none;
	text-align: left;
}
li {
	
}

.item {
    /*display: inline-block;*/
    /*padding: 20px 0 20px;*/
	list-style-type: none;
}

.listitem {
	color: white;
	text-align: left;
	list-style-position: inside;
}

a:hover, a:focus, a:active {
    color: white;
    text-decoration: none;
}
a {
    font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif;
	text-decoration: none;
    transition: color 0.1s, background-color 0.1s;
}
a {
    position: relative;
    display: block;
    padding: 16px 0;
    margin: 0 12px;
    letter-spacing: 1px;
    font-size: 18px;
    line-height: 16px;
    font-weight: 900;
    text-transform: uppercase;
    transition: color 0.1s,background-color 0.1s,padding 0.2s ease-in;
    color: white;
}
a::before {
    content: '';
    display: block;
    position: absolute;
    bottom: 3px;
    left: 0;
    height: 3px;
    width: 100%;
    background-color: white;
    transform-origin: right top;
    transform: scale(0, 1);
    transition: color 0.1s,transform 0.2s ease-out;
}
a:active::before {
    background-color: white;
}
a:hover::before, a:focus::before {
    transform-origin: left top;
    transform: scale(1, 1);
}

p {
	font-size: 30px;
	text-align: center;
}

body {
    /*background-color: #171314;/*313538*/
	background-image: url("Images/background_new_ohne_bubbles.jpg");
	/*background-image: url("Images/background.jpg");*/
	background-size: cover;
	background-repeat: no-repeat;
	}

.grid-container-products {
  display: grid;
  width: 99vw;
  height: 100vh;
  grid-row-gap: 10px;
  grid-template-columns: 8.33% 8.33% 8.33% 8.33% 8.33% 8.33% 8.33% 8.33% 8.33% 8.33% 8.33% 8.37%;
  grid-template-rows: 30% 1fr 2fr;
  padding: 2%;
}

/*Header*/
.headerleft-products {
	grid-column: 1 / 5;
	align-item: center;
	}

.headermiddle-products {
	grid-column: 5 / 9;
	text-align: center;
	}

.headerright-products {
	grid-column: 9 / 13;
}

/*Produktübersicht*/
.products-picture-1 {
	margin: 15px auto;
	grid-column: 1 / 4;
	text-align: center;
	}

.products-picture-2 {
	margin: 15px auto;
	grid-column: 4 / 7;
	text-align: center;
	}

.products-picture-3{
	margin: 15px auto;
	grid-column: 7 / 10;
	text-align: center;
	}

.products-picture-4{
	margin: 15px auto;
	grid-column: 10 / 13;
	text-align: center;
	}

.products-text-1 {
	color: white;
	grid-column: 1 / 4;
	text-align: center;
	}

.products-text-2 {
	color: white;
	grid-column: 4 / 7;
	text-align: center;
}

.products-text-3{
	grid-column: 7 / 10;
	text-align: center;
	color: white;
}

.products-text-4{
	grid-column: 10 / 13;
	color: white;
	text-align: center;
	}

	
/*Nur ein Textfeld*/
.one-content-field{
grid-column: 1 / 13;
color: white;
text-align: center;
}

.left {
	color: white;
	grid-column: 1 / 5;
	text-align: left;
	width: 100%;
	height: 90%;
	margin: 15px auto;
	position: relative;
}

.middle{
	color: white;
	grid-column: 5 / 9;
	text-align: justify;
	padding-top: 15px;
	/*padding-left: 45px;
	padding-right: 45px;*/
}

.right {
	text-align: center;
	grid-column: 9 / 13;
	width: 100%;
	height: 90%;
	margin: 15px auto;
	position: relative;
	}