:root {
  --container-bg-color: #333;
  --left-button-hover-color: rgba(161, 11, 11, 0.3);
  --right-button-hover-color: rgba(92, 92, 92, 0.3);
  --hover-width: 60%;
  --other-width: 40%;
  --speed: 1000ms;
}

html, body {
  padding:0;
  margin:0;
  font-family: Candara, Calibri, Segoe, "Segoe UI", Optima, Arial, sans-serif;;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  text-shadow: 0 0 5px #1a1a1a;
  -webkit-user-select: none;  
  -moz-user-select: none;    
  -ms-user-select: none;      
  user-select: none;
}

h1 {
  font-size: 1.5rem;
  color: #fff;
}

p {
  font-size: 1rem;
  color: #fff;
}

a:hover {
  opacity: 0.7;
  transition-duration: 0.2s;
}

.link {
  font-size: 1.5rem;
  color: #fff;
}

.barinfo {
  position: absolute;
  left: 50%;
  top: 40%;
  transform: translateX(-50%);
  white-space: nowrap;
  text-align: center;
}

.logo {
  position: absolute;
  left: 50%;
  top: 20%;
  transform: translateX(-50%);
  white-space: nowrap;
  width: 60%;
}

.container {
  position: relative;
  width: 100%;
  height: 100%;
  background: var(--container-bg-color);
}

.footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  text-align: center;
  font-size: 1rem!important;
}

.split {
  position: absolute;
  width: 50%;
  height: 100%;
  overflow: hidden;
}

.split.left {
  left:0;
  background: url(img/palomanw.jpeg) center center no-repeat;
  background-size: cover;
}

.split.left:before {
  position:absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: var(--left-bg-color);
}

.split.right {
  right:0;
  background: url(img/palomainn.jpeg) center center no-repeat;
  background-size: cover;
}

.split.right:before {
  position:absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: var(--right-bg-color);
}

.split.left, .split.right, .split.right:before, .split.left:before {
  transition: var(--speed) all ease-in-out;
}

.hover-left .left {
  width: var(--hover-width);
}

.hover-left .right {
  width: var(--other-width);
}
/*
.hover-left .right:before {
  z-index: 2;
}
*/
.hover-right .right {
  width: var(--hover-width);
}

.hover-right .left {
  width: var(--other-width);
}
/*
.hover-right .left:before {
  z-index: 2;
}
*/
@media(max-width: 800px) {
  h1 {
    font-size: 1rem;
  }
    
  p {
    font-size: 0.9rem;  
  }

  .logo {
    top: 28%;
    width: 90%;
  }
}

@media(max-height: 700px) {
  .button {
    top: 70%;
  }
}


/* ----------- iPhone 5, 5S, 5C and 5SE ----------- */

/* Landscape */
@media only screen 
  and (min-device-width: 320px) 
  and (max-device-width: 568px)
  and (-webkit-min-device-pixel-ratio: 2)
  and (orientation: landscape) {
      .logo {
          top: 5%;
          width: 50%;
      }
      
      .barinfo {
          top: 25%;
      }
      
      h1 {
          font-size: 0.8rem;
      }
      
      p {
          font-size: 0.6rem;
      }
      
      .link {
          font-size: 1rem;
      }
      
      .socialicon {
          width: 20%;
          height: 20%;
      }
      
      #PFR {
          max-width: 60%;
      }
}

/* ----------- iPhone 6, 6S, 7 and 8 ----------- */

/* Landscape */
@media only screen 
  and (min-device-width: 375px) 
  and (max-device-width: 667px) 
  and (-webkit-min-device-pixel-ratio: 2)
  and (orientation: landscape) { 
      .logo {
          top: 5%;
          width: 50%;
      }
      
      .barinfo {
          top: 25%;
      }
      
      h1 {
          font-size: 0.8rem;
      }
      
      p {
          font-size: 0.6rem;
      }
      
      .link {
          font-size: 1rem;
      }
      
      .socialicon {
          width: 20%;
          height: 20%;
      }
            
      #PFR {
          max-width: 60%;
      }
}

/* ----------- iPhone 6+, 7+ and 8+ ----------- */

/* Landscape */
@media only screen 
  and (min-device-width: 414px) 
  and (max-device-width: 736px) 
  and (-webkit-min-device-pixel-ratio: 3)
  and (orientation: landscape) { 
      .logo {
          top: 5%;
          width: 50%;
      }
      
      .barinfo {
          top: 25%;
      }
      
      h1 {
          font-size: 0.8rem;
      }
      
      p {
          font-size: 0.6rem;
      }
      
      .link {
          font-size: 1rem;
      }
      
      .socialicon {
          width: 20%;
          height: 20%;
      }
            
      #PFR {
          max-width: 60%;
      }
}

/* ----------- iPhone X ----------- */

/* Landscape */
@media only screen 
  and (min-device-width: 375px) 
  and (max-device-width: 812px) 
  and (-webkit-min-device-pixel-ratio: 3)
  and (orientation: landscape) { 
      .logo {
          top: 5%;
          width: 50%;
      }
      
      .barinfo {
          top: 25%;
      }
      
      h1 {
          font-size: 0.8rem;
      }
      
      p {
          font-size: 0.6rem;
      }
      
      .link {
          font-size: 1rem;
      }
      
      .socialicon {
          width: 20%;
          height: 20%;
      }
            
      #PFR {
          max-width: 600px;
      }
}