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

* { padding: 0; margin: 0; }
::selection { background:#FD3586; color: #FFF; }
::-moz-selection { background:#FD3586; color: #FFF; }
  
body { 
	background: linear-gradient(-45deg, #000, #222, #111, #000);
	background-size: 500% 500%;
	animation: gradient 10s ease infinite;
	height: 100vh;
  font-family: 'Oswald', Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
  color: #FFFFFF;
}

@keyframes gradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}


main { padding-bottom: 100px; }  

  .wrapper { 
  width: 90%; 
  text-align: center; 
  margin: 0 auto; 
  }
  
.top-wrapper { 
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: 100%;
  margin: 0 auto;
  padding: 30px 0;
  }
  
    .logo-wrapper {
    margin-top: 50px;
  }
  
  .logo {
    float: left;
    display: inline-block;
    width: 50px;
  }
  
  h1 {
    float:left;
    display: inline;
    margin-left: 5px;
    font-size: 28px;
    font-weight: 600;
    letter-spacing: 9px;
    padding: 5px;
  background-image: url(https://media.giphy.com/media/xUPGcyTe2I8FvXy9EI/giphy.gif);
  background-size: 100% 100%;
  color: transparent;
  -moz-background-clip: text;
  -webkit-background-clip: text;
  }
  
 .top-wrapper p {
   font-family: Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
    float: right;
    text-align: right;
    font-size: 46px;
    line-height: 40px;
    font-weight: 200;
    max-width: 400px;
  }

  
.row { 
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.column img { 
  width: 100%; 
  height: 100%;
  background:#222; 
  color:#FFF; 
  object-fit: cover;
  }
.reveal{
  transform: translateY(100px);
  opacity: 0;
  transition: 0.5s all ease;
}
.reveal.active{
  transform: translateY(0);
  opacity: 1;
}
  
footer {
  display: none;
  background-color: #000;
  box-shadow: 0 0 150px rgba(255,255,255,0.8);
  color:#AAA;
  position: fixed;
  bottom: 0;
  transition: bottom 0.5s ease-in-out;
  width: calc(100% - 50px);
  font-size: 13px;
  letter-spacing: 2px; 
  font-weight: 200;
  padding: 25px;
  text-align: center;
  line-height: 20px;
  vertical-align: middle;
}


.footer-logo {
  display: inline;
  letter-spacing: 4px;
  font-weight: 600;
  font-size:12px;
  background-image: url(https://media.giphy.com/media/xUPGcyTe2I8FvXy9EI/giphy.gif);
  background-size: 100% 100%;
  color: transparent;
  -moz-background-clip: text;
  -webkit-background-clip: text;
  padding: 5px;
  margin-left: 20px;
  }  
  
footer a {
    text-decoration: none;
    color:#AAA;
  }
footer a:hover {
    color:#EEE;
  }
  
@media screen and (max-width: 700px) {
  .wrapper {     
    background-image: url('logo_divergentpr.png');
    background-position: 200px -150px;
    background-repeat: no-repeat;
    background-size: 500px 500px;
    width: 100%;
  }
  .top-wrapper { 
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  width: 90%;
    padding: 0 0 5vh 0;
    text-align: left;
  }
    .logo {
    float: left;
    display: inline-block;
    width: 40px;
  }
    h1 {
    float:left;
    display: inline;
    margin-left: 5px;
    font-size: 21px;
    font-weight: 600;
    letter-spacing: 6px;
    padding: 5px;
  background-image: url(https://media.giphy.com/media/xUPGcyTe2I8FvXy9EI/giphy.gif);
  background-size: 100% 100%;
  color: transparent;
  -moz-background-clip: text;
  -webkit-background-clip: text;
  }
  .top-wrapper p {
    float: left;
    text-align: left;
    margin-top: 25px;
    font-size: 35px;
    line-height: 32px;
    max-width: 300px; 
  }  
.row { 
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5px;
  }
footer div {
  width:100% !important;
  text-align: center;
  line-height: 18px;
  }
  .footer-pad { padding-top: 10px; }
}
  