
:root {
    --main-bg-color: #e8e8e1;
  }

*{
    margin:0;
    padding:0;
}

@font-face {
    font-family: 'Univers';
    src: url('../fonts/UniversLTStd.woff2') format('woff2'),
        url('../fonts/UniversLTStd.woff') format('woff'),
        url('../fonts/UniversLTStd.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'LightUltraCn';
    src: url('../fonts/UniversLTStd-LightUltraCn.woff2') format('woff2'),
        url('../fonts/UniversLTStd-LightUltraCn.woff') format('woff'),
        url('../fonts/UniversLTStd-LightUltraCn.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'ThinUltraCn';
    src: url('../fonts/UniversLTStd-ThinUltraCn.woff2') format('woff2'),
        url('../fonts/UniversLTStd-ThinUltraCn.woff') format('woff'),
        url('../fonts/UniversLTStd-ThinUltraCn.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/*IOS Fix*/
@supports (-webkit-touch-callout: none) {
	html, body {
		height: 100%;
		overflow-x: hidden;
	  }
  }

  html,body {
    overflow-x: hidden;
    height: 100%;
    transform: translate3d(0, 0, 0);
}

body {
    color: #000000;
    background-image: url(../art/city.gif);
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-color: #c0e3eb;
    height: 100vh;
    font-family: 'Univers';
    font-size: 12pt;
    overflow-x: hidden;
    
}


.overlay {
    position: fixed;
    width: 100vw;
    height: 200vh;
    opacity: .85;
    background-color: #c0e3eb;
    z-index: -5;
}

.text-header {

font-family: 'LightUltraCn';
font-size: 26pt;
color: #ad5170;
}

.subheader {

    font-family: 'ThinUltraCn';
    font-size: 24pt;
    }

.location-header {
    font-weight: 550;
    font-size: 16pt;
    }

.game-header {

    font-family: 'LightUltraCn';
    font-size: 36pt;
    color: #279FD1;
    margin-bottom: -25px;
    }

.blackbg {
background-color: black;
}

.email-text {
 color:#ad5170;
font-family: 'LightUltraCn';
font-size: 32pt;
}


.scrollable-y {
    animation: slide1 100s linear infinite;
}

@keyframes slide1{
    0%{
      transform: translate3d(-5090px, 0, 0);
    }
    100%{
      transform: translate3d(0, 0, 0);
    }
  }


.scrollable-x {
    animation: slide2 60s linear infinite;   
}

@keyframes slide2{
    0%{
      transform: translate3d(-1700px, 0, 0);
    }
    100%{
      transform: translate3d(0, 0, 0);
    }
  }

.gameboy {
    position: fixed;
    z-index: -3;
}


.outer-gameboy {
    position: absolute;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

.text-box {
    height: 36; 
    width:40%; 
    font-size: 14pt;
    position: relative;
    z-index: 10;
    padding-left: 10px;
}


.subscribe-btn {
    padding-top: 2px;
    padding-bottom: 2px;
    width:20%; 
    font-size: 14pt;
    position: relative;
    z-index: 10;
}

.popout-btn {
    background-color: white;
    border: 3px solid black;
    border-radius: 50%;
    padding: 10px;
    position: absolute;
    /*width:50px;*/
    top: 20px;
    right: 20px;
    z-index: 99;
   
}
.pop-out-anim {
    animation: tilt-shaking .5s linear infinite normal; 
}

.border-container {
    display: flex;
    justify-content:center;
    width:100%;
}
.borders-top {
    border-top: 2px solid #279FD1;
    width: 90%;
}

@keyframes tilt-shaking {
    0% { transform: rotate(0deg); }
    25% { transform: rotate(5deg); }
    50% { transform: rotate(0eg); }
    75% { transform: rotate(-5deg); }
    100% { transform: rotate(0deg); }
  }

/* Toggle this class when clicking on the popup container (hide and show the popup) */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
}
.popup {
    visibility: hidden;
    position: absolute;
    top: 15vh;
    display: inline-block;
    cursor: pointer;
    z-index: 100;
  }
  /* The actual popup (appears on top) */
  .popup .popuptext {
    width: 90vw;
    height:80vh;
    background-color: rgba(255,255,255,1);
    border:2px solid #279FD1;
    color: #fff;
    text-align: center;
    border-radius: 15px;
    padding: 8px 0;
    position: absolute;
    left: 5vw;
  }
   
.popup .show {
    visibility: visible;
    -webkit-animation: fadeIn 1s;
    animation: fadeIn 1s;
    overflow-y: scroll;
  }

.news-icon{
    width: 50px;

}

@media screen and (max-width: 768px) {
    body {
        font-size:8pt;
    }
    .location-header {
        font-size:10pt;
    }
    .inner-gameboy {
        width: 338%;
        }
    .gameboy2 {
        display: none;
    }
    .mobile-adjustment {
        margin-top: 50%;
    }

   .game-header {
        font-size: 14pt;
        color: #279FD1;
        margin-bottom: -10px;
        }

    .text-header {
        font-size: 18pt;
    }    

    .email-text {
        font-size: 18pt;
        }
    .text-box {
        width:70%;
        font-size: 10pt;
    }
    .subscribe-btn {
        width:20%;
        font-size: 8pt;
    }
    }

.gameboy2 {
    position: fixed;
    z-index: -4;
    right: -200;
    bottom: -300;
    height:100vh;
    overflow: hidden;
}

.gradient {
    position: absolute; 
    background-image: url("../art/gradient.png");
    background-size: 100% 100%;
    width:100vw;
}

.games {
    /*position:relative;*/
    z-index: -2;

}

.game-icon {
    width: 100px !important;
}

.outer-photos {
    position: fixed;
    width: 100vw;
    height: 100vh;
    right: 0;
    top: 0;
    overflow: hidden;
}

.photos {
    position: relative;
    z-index: 5;
    height: auto;
}
