html, body{
    height: 100%;
    width: 100%;
    padding: 0;
    margin: 0;
    background-color: #fff;
    font-family: verdana;
}

a{
    color: #000;
    text-decoration: none;
}

a:hover{
    color: #ff8c00;
    box-shadow: 10px, 2px, 2px, #000;
}

/* ########################################################
 *    
 *                      CLASS
 * 
 * ########################################################
*/

.header{
    /* position: fixed; */
    z-index: 10;
    width: 100%;
    height: 125px;
    background-color: #fff;
}

.topBar{
    top: 125px;
    z-index: 10;
    width: 100%;
    /* position: fixed; */
    height: 50px;
    background-color: #ff8c00;
    background-image: linear-gradient( 180deg, #f2f2f2, #fff, #f2f2f2);
}

.bottomBar{
    width: 100%;
    height: 50px;
    background-color: #eee;
    align-content: center;
    text-align: center;
    margin-top: 10px;
}

.bottomBar a, .bottomBar p{
    color: #000;
    font-size: 12px;
    text-decoration: none;
}

.menu{
    width: 70%;
    height: 50px;
    margin-left: auto;
    margin-right: auto;
    background-color: transparent;
    align-content: center;
}

.menu a{
    font-size: 20px;
    color: #444;
    text-decoration: none;
    border-left: solid 2px #444;
    border-radius: 1px;
    margin-right: 30px;
    padding-left: 4px;
}

menu a:hover{
    color: #ff8c00;
    box-shadow: 10px, 2px, 2px, #000;
}

.content{
    width: 70%;
    margin-left: auto;
    margin-right: auto;
    background-color: transparent;
    /*align-content: center; */
}

.mainImg{
    width: 100%;
    height: 100%;
    background-attachment: fixed;
    background-image: url(../media/img/sprinterMeer.jpg);
    background-size: cover;
    background-position-x: center;
}

.galerie{
    display: block;
    width: 50%;
}

.images, .images img{
    display: block;
    width: 98%;
    padding: 1%;
}

.row {
  display: -ms-flexbox; /* IE 10 */
  display: flex;
  -ms-flex-wrap: wrap; /* IE 10 */
  flex-wrap: wrap;
  padding: 0 4px;
}

.column {
  -ms-flex: 25%; /* IE 10 */
  flex: 25%;
  padding: 0 4px;
}

.column img {
  margin-top: 8px;
  vertical-align: middle;
}

.shopTable{
    width: 100%;
    height: 200px;
    border: solid 1px #000;
    border-collapse: collapse;
    vertical-align: top;
}

.shopPic{
    width: 20%;
    border: solid 1px #000;
}

.shopPic img{
    height: 200px;
}


.shopDescription{
    width: 60%;
    border: solid 1px #000;
    vertical-align: top;
}

.shopPrice{
    width: 20%;
    border: solid 1px #000;
    vertical-align: top;
}

.cartTable{
    width: 100%;
    border: solid 1px #000;
    border-collapse: collapse;
    vertical-align: top;
}

/* ########################################################
 *    
 *                      ID
 * 
 * ########################################################
*/

#topLogo{
    height: 75px;;
    position: absolute;
    top: 25px;
    left: 15%;
}

#scrollArrowBox{
    position: absolute;
    top: 80%;
    z-index: 2;
    font-size: 80px;
    display: block;
    left: 50%;
    transform: translate(-50%, -50%);
	animation:bounce 2s infinite;
	-webkit-animation:bounce 2s infinite;
    color: #ddd;
}

@keyframes bounce {
	0%       { bottom:25px; }
	25%, 75% { bottom:35px; }
	50%      { bottom:40px; }
	100%     { bottom:20px; }
}
@-webkit-keyframes bounce {
	0%       { bottom:25px; }
	25%, 75% { bottom:35px; }
	50%      { bottom:40px; }
	100%     { bottom:20px; }
}

#scrollTextBox{
    position: absolute;
    top: 85%;
    z-index: 2;
    font-size: 15px;
    display: block;
    left: 50%;
    transform: translate(-50%, 0%);
    color: #ddd;
}

#freiheit{
    position: absolute;
    top: 40%;
    z-index: 2;
    font-size: 40px;
    font-family: fantasy;
    display: block;
    left: 50%;
    transform: translate(-50%, 0%);
    color: #ddd;
}


/* ########################################################
 *    
 *                      mobile
 * 
 * ########################################################
*/
/*
@media (max-aspect-ratio: 3/2) {
    #scrollTextBox, #scrollArrowBox{
        visibility: hidden;
    }
}
*/

@media screen and (max-width: 750px) {
    .menu{
        width: 94%;
        margin: 2%;
    }
    #topLogo{
        height: 75px;;
        position: absolute;
        top: 25px;
        left: 2%;
    }
    .content{
        width: 94%;
        margin-left: 2%;
        margin-right: 2%;
        background-color: inherit;
        /*align-content: center; */
    }
    
}