@font-face {
    font-family: 'Distortion Of The Brain And Mind';
    src: url('Distortion-Of-The-Brain-And-Mind.woff2') format('woff2'),
        url('Distortion-Of-The-Brain-And-Mind.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'GalanoGrotesqueAltDEMO';
    src: url('GalanoGrotesqueAltDEMO-Bold.woff2') format('woff2'),
        url('GalanoGrotesqueAltDEMO-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}



body {
	background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
	background-size: 400% 400%;
	animation: gradient 15s ease infinite;
	height: 100vh;
	 overflow: hidden;
	   -webkit-user-select: none; /* Safari */
  -ms-user-select: none; /* IE 10 and IE 11 */
  user-select: none; /* Standard syntax */
}

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

.text-container{
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-content: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

h2{
	position: relative;
    color: black;
    font-family: Distortion Of The Brain And Mind;
    font-weight: normal;
    font-size: 8vh;
    line-height: normal;
    text-align: center;
    white-space: nowrap;
    opacity: 0.33;
    z-index: 1;

}

.marquee {
    position: relative;
    width: 100%;
    overflow: hidden;
    --offset: 20vw;
    --move-initial: calc(-25% + var(--offset));
    --move-final: calc(-50% + var(--offset));
}

.marquee-inner {
  width: fit-content;
  display: flex;
  position: relative;
  transform: translate3d(var(--move-initial), 0, 0);
  animation: marquee 5s linear infinite;
  animation-play-state: running;
}

.marquee-inner.speed-2 {
  animation: marquee 7.5s linear infinite;
}

.marquee-inner.speed-3 {
  animation: marquee 8.7s linear infinite;
}

.marquee span {
  padding: 0 2vw;
}

.marquee-inner img {
  display: inline;
}

@keyframes marquee {
  0% {
    transform: translate3d(var(--move-initial), 0, 0);
  }

  100% {
    transform: translate3d(var(--move-final), 0, 0);
  }
}

.center {
  position: relative;
    top: 50%;
  transform: translateY(-50%);
  display: block;
  margin-left: 25%;
  margin-right: auto;
  width: 50%;
  z-index: 10;
}
.center p,a{
	display:block;
  color: black;
    font-family: GalanoGrotesqueAltDEMO;
    font-weight: normal;
    font-size: 20px;
    line-height: normal;
    text-align: center;
    z-index: 10;
}
  .flex-container {

    display: flex;
    margin: 30px;
    justify-content: center; 
    align-items: flex-start; 
    /* flex-flow: row wrap; */ 
    flex-direction: row; 
    flex-wrap: wrap; 
    align-content: center;
    height: 100%;

  }

  .flex-container > div{
  margin : 20px;
    z-index: 10;
  }


  .flex-container img {
  	width: 100%;
		max-width: 280px;
		height: auto;
		box-shadow: 
		/* stalked pages */ 
		 1px 0px #aaa, 1px 2px 1px #aaa,
			2px 1px 1px #aaa, 1px 2px 1px #aaa,
			3px 2px 1px #aaa, 2px 3px 1px #aaa,
			4px 3px 1px #aaa, 
		/* book shine */
			-5px -5px 20px 0px rgba(255,255,255,0.15),
		/* book shadow */
			7px 7px 4px rgba(0,0,0,0.3),
			10px 10px 15px rgba(0,0,0,0.3);
	}
  }

