@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: 10px;
  width: 100%;
  text-align: center;
}

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

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

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

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

.content {
   margin: 5em 0 0; 
}

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

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

.text {
    text-align: center;
    height: 100%;
    width: auto;
    padding: 2em;
    
}

.text img {
    max-width: 750px;
    height: auto;
    width: 100%;
    
}

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


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

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

@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;
    }
    
        .logo img {
    height: auto;
    max-width: 85%;
        margin-left: auto;
        margin-right: auto;
    display: block;

    }
    
    
    .logo  {
justify-content: space-around;
    }
    
    .content {
        margin: 2em 0 0;}
}