@charset "UTF-8";
/* CSS Document */

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


body {
background: radial-gradient(50% 50% at 50% 50%, rgba(40, 40, 40, 0.5) 0%, rgba(36, 36, 36, 0) 100%), #1A1B1C;
background-repeat: no-repeat;
    text-align: center;
}

footer {
  position: relative;
  left: 0;
  bottom: 0;
	padding-top: 25px;
padding-bottom: 20px;
  width: 100%;
  text-align: center;
}

nav {
	display: flex;
	justify-content: space-around;
	align-items: center;
	min-height: 8vh;
}

.logo {
	margin-top: 35px;
	height: 100%;
	width: auto;
}

.nav-links {
	display: flex;
	justify-content: space-around;
	width: 50%;
}

.nav-links img:hover {
    transform: scale(1.5);
    transition: 0.5s;
}

.pages {
	  display: flex;
  flex-wrap: wrap;
  padding: 0 4em;
	margin-top: 20px;
}

.bilder {
	 flex: 25%;
  max-width: 25%;
  padding: 0 20px
	
}

.bilder img{
  margin-top: 8px;
  vertical-align:middle;
  width: 100%;
}

.bilder:hover {
    transform: scale(1.05);
    animation-duration: 2s;
}

h1 {
	color: whitesmoke;
	text-align: center;
	padding: 2em 2em 0em 2em;
	font-family: 'Montserrat', sans-serif;
	text-transform: uppercase;
	letter-spacing: 100;

}
	h2 {
	color: whitesmoke;
	text-align: center;
	padding: 2em;
	font-family: 'Montserrat', sans-serif;
	text-transform: uppercase;
		letter-spacing: 100;
}
    h4,
	h3 {
	color: whitesmoke;
	text-align: center;
	padding: 2em;
	font-family: 'Montserrat', sans-serif;
	text-transform: uppercase;
	letter-spacing: 100;

}

a {
	-webkit-transition: all .3s ease-in-out;
-moz-transition: all .3s ease-in-out;
transition: all .3s ease-in-out;
    text-decoration: none;
	
}

li,
ul,
p {
	color: whitesmoke;
	font-family: 'Montserrat', sans-serif;
	text-decoration: none;
	letter-spacing: 50;
    margin: 0 15px;
}

.lslogo {
 display: block;
	padding: 1em 0; 
  margin-left: auto;
  margin-right: auto;
  width: 15%;
	
}

@media only screen and (max-width: 600px) {
  .nav-links {
    display: none;}
    
    .pages {
        display: block;
          }
        .bilder {
          	 flex: 25%;
  max-width: 100%;
  padding:  20px ; 
        }    
  
}

li {
    text-decoration: none;
    list-style: none;}

.back {
    margin: 0 auto;
    padding: 1em 0;
    text-align: center;
    
}

.back img {
    margin: 0 auto;
    padding: 1em 5em;
    
}

.back-to-top {
    float: right;
    position: fixed;
     bottom:20px;
     right:20px;
     padding:1em;
     z-index: 100;
        max-height: 50%;
        width: auto;
}

.text-cont {
    text-align: left;
    margin-left: 3em;
    
}