@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;
}

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;
    text-decoration: none;
    list-style: none;
}

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

.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;
  width: 100%;
}

.bilder:hover {
    transform: scale(1.05);
    transition: 0.5s;
}


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

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


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

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

@media only screen and (max-width: 600px) {
  .nav-links {
    display: table-row;
      justify-content: space-around;  
      margin-top: 35px;
    }
    
      .nav-links img {
       display: block;
          margin-right: auto;
          margin-left: auto;
    }
    
    
  .pages {
      display: flex;
  flex-wrap: wrap;
  padding: 0 4em;
	margin-top: 20px;
}

.bilder {
	 flex: 50%;
  max-width: 75%;
  padding: 0 20px 1em;
	
}
    
    .logo img {
    height: auto;
    max-width: 85%;
        margin-left: auto;
        margin-right: auto;
    display: block;

    }
    
    
    .logo  {
justify-content: space-around;
    }
    
    
}

h1 { display: none;}

h2 { display: none;}

p { display: none;}

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

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

h4 {
    margin-top: 2em;
    margin-bottom: 1em;
    text-align: center;
    color: aliceblue;
    font-size: 35px;
    
}