html, body {
  height: 100%;
  margin: 0px;
  overflow-x: hidden;
  overflow-y: auto; /* or scroll */

}

a:visited { text-decoration: none !important; color:white; }
a:hover { text-decoration: none !important; color:white; }
a:focus { text-decoration: none !important; color:white; }
a:hover, a:active { text-decoration: none !important; color:white; }
a:-webkit-any-link { text-decoration: none !important; color:white; }

.roojack-section {
  background-color: white;
  width: 50%;
  height: 100%;
  float: left;
  
  background-image: 
    linear-gradient(
      rgba(255, 214, 170, 0) 35%, 
      rgba(255, 214, 170, 1) 50%
    ),
    url("images/Screenshot Level.png");
  background-size: 100%;
  background-repeat: no-repeat;
  
  text-align: center;
  
  overflow: hidden;
}

.roojack-title-image {
  position: relative;
  top: 0px;
  width: 500px;
  
  animation-name: roojack-title-animation;
  animation-duration: 4s;
  animation-iteration-count: infinite;
}

/* Safari 4.0 - 8.0 */
@-webkit-keyframes roojack-title-animation {
    0%   {top: 0px;}
    50%  {top: 10px;}
    100% {top: 0px;}
}

/* Standard syntax */
@keyframes roojack-title-animation {
    0%   {top: 0px;}
    50%  {top: 10px;}
    100% {top: 0px;}
}

.maple-image {
  position: relative;
  width: 45%;
  left: 0;
  top: 0;
  
  -webkit-transition: transform 0.2s; /* Safari */
  transition: transform 0.2s;
}

.maple-image:hover {
  transform: scale(1.05, 1.05);
}

.whippy-image {
  position: relative;
  width: 40%;
  top: 0%;
  right: 0%;
  
  -webkit-transition: transform 0.2s; /* Safari */
  transition: transform 0.2s;
}

.whippy-image:hover {
  transform: scale(1.05, 1.05);
}

.roojack-information {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: bold;
  position: relative;
  bottom: 10px;
  width: 100%;
  text-align: center;
}

.roojack-button {
  padding: 15px;
  border-style: solid;
  border-radius: 10px;
  border-width: 4px;
  color: black !important;
  
  -webkit-transition: border-color 0.5s; /* Safari */
  transition: border-color 0.5s;
}

.roojack-button:hover {
  border-color: white;
  color: black;
  cursor: pointer;
}

.fa-lg {
  vertical-align: 0 !important;
}

.grimpros-image {
  position: relative;
  bottom: 10px;
  left: calc(-50% + 50px);
  width: 80px;
  background-color: black;
  padding: 5px;
  border-radius: 10px;
}

/****************************************************************************************/

.arduboy-section {
  background-color: black;
  width: 50%;
  height: 100%;
  float: right;
}

.arduboy-title {
  position: relative;
  font-family: 'Press Start 2P', cursive;
  color: white;
  font-size: 80px !important;
  margin: 30px;
}

.arduboy-games-title {
  position: relative;
  font-family: 'Press Start 2P', cursive;
  color: white;
  font-size: 60px !important;
  right: -50%;
}

.arduboy-gadget-image {
  position: relative;
  width: 20%;

  -webkit-transition: top 1s, opacity 1s, transform 0.2s; /* Safari */
  transition: top 1s, opacity 1s, transform 0.2s;
}

.arduboy-gadget-image:hover {
  transform: scale(1.2, 1.2);
  cursor: pointer;
}

.dancerow-start {
  top: 350px;
  left: 40px;

  opacity: 0;
}

.dancerow {
  top: 5%;
  left: 40px;

  opacity: 1;
}

.prize-frenzy-start {
  top: 10%;
  left: -150px;

  opacity: 0;
}

.prize-frenzy {
  top: 10%;
  left: -150px;

  opacity: 1;
}

.santa-factory-start {
  top: 300px;
  left: 30px;

  opacity: 0;
}

.santa-factory {
  top: 0%;
  left: 30px;

  opacity: 1;
}

.tntank-start {
  top: 490px;
  left: -50%;

  opacity: 0;
}

.tntank {
  top: 15%;
  left: -50%;

  opacity: 1;
}

.detail-section {
  color: white;
  width: 400px;
  text-align: center;
  position: relative;
  right: -50%;
  top: -10%;
}

.action-detail {
  font-family: 'Press Start 2P', cursive;
  border-style: solid;
  border-width: 2px;
  padding: 10px;
  margin: 15px;
  color: white !important;
  
  -webkit-transition: border-color 0.5s; /* Safari */
  transition: border-color 0.5s;
}

.action-detail:hover {
  border-color: #08d133;
  cursor: pointer;
}

.detail-title {
  font-family: 'Press Start 2P', cursive;
  margin-bottom: 40px;
  -webkit-transition: opacity 0.2s; /* Safari */
  transition: opacity 0.2s;
}

.detail-title.hide {
  opacity: 0;
}

.detail-title.show {
  opacity: 1;
}

.grim-pros-retro {
  position: relative;
  bottom: calc(-20%);
  left: calc(100% - 170px);
  width: 150px;
  overflow: hidden;
}

/****************************************************************************/

.echodrop-section {
  color: white;
  padding: 20px;
  font-family: "Work Sans", sans-serif;
  align-content: center;
  text-align: center;
  height: 100%;
  background-color: color(display-p3 0.129 0.133 0.137);
}

/****************************************************************************/

@media only screen and (max-width: 1299px) {
    .roojack-section {
      display: none;
    }
    
    .arduboy-section {
      display: none;
    }
    
    #smaller-screen {
      display: block !important;
    }
}