/* Split the screen in half */
body {
  font-family: "Nunito", sans-serif; 
    font-size: 1.4vmax;
    /* font-size:1.5em; */
}

h1 {
  font-size: 1.4vmax;
}

h2 {
  font-size: 1.4vmax;
}

p {
  text-align: left;
}


.overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #008CBA;
  overflow: hidden;
  width: 0%;
  height: 100%;
  transition: .5s ease;
  overflow: scroll;
  overflow-y: auto;
  overflow-x: auto;
}


.text {
  color: white;
  font-size: 1.9vh;
  position: absolute;
  text-align: left;  
  padding: 1.5vmax;
  
}


.split {
    height: 100%;
    width: 50%;
    position: fixed;
    z-index: -1;
    top: 0;
    overflow-x: hidden;
    
  }
  
  /* Control the left side */
  .leftside {
    left: 0;
    background: #ffffff url(images/typing.jpg) no-repeat right top;
    background-size: cover;
   
  }

  .leftside:hover .glow-text-item{
      opacity: 1;
  }

  .rightside:hover .glow-text-item{
    opacity: 1;
}


  
  /* Control the right side */
  .rightside {
    right: 0;
    background: #ffffff url(images/books.jpg) no-repeat right top;
    background-size: cover;
  }
  
  /* If you want the content centered horizontally and vertically */
  .centered {
    position: absolute;
    width: 90%;
    top: 10%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
  }


  .glow-text {
    position: absolute;
    top: 42%;
    left: 50%;
    transform: translate(-50%, -50%);
    /* white-space: nowrap; */
  }

  .glow-text-item{
    font-size: 1.9vh;
    font-weight: bold;
    color: #000;
    background-color: rgb(255, 255, 255);
    border-style: solid;
    border-width: 0.2vmax;
    border-color: rgb(0, 150, 50);
    transition: 0.5s;
    opacity: 0;
    padding-left: 0.7vmax;
    padding-right:0.7vmax;
    padding-top: 0.4vmax;
    padding-bottom:0.4vmax;
    border-radius: 0.6vmax;
    margin:1.5vmax;
  }


 

 /*Button Three*/
 #moreInfoButton {
  position:absolute;
  bottom:0;
  right:0;
    
    border: none;
    padding: 0.8vmax;
    width: 75%;
    text-align: center;
    -webkit-transition-duration: 0.4s; /* Safari */
    transition-duration: 0.4s;
    text-decoration: none;
    overflow: hidden;
    text-transform: uppercase;
  letter-spacing: 2px;
  text-align: center;
  font-weight: 500;
  background-color: #008CBA;
  font-size: 1.0vmax;
  color: white;
}

#moreInfoButton:hover{
   background:#fff;
   box-shadow:0px 2px 10px 5px #97B1BF;
   color:#000;
}

#moreInfoButton:after {
    content: "";
    background: #f1c40f;
    display: block;
    position: absolute;
    padding-top: 300%;
    padding-left: 350%;
    margin-left: -20px !important;
    margin-top: -120%;
    opacity: 0;
    transition: all 0.8s
}

#moreInfoButton:after {
    padding: 0;
    margin: 0;
    opacity: 1;
    transition: 0s
}

  


/* socials */
#patreonLogo {
  height: 4.0vmax;
  position:absolute;
  top:0;
  right:0;
}

#patreonLogo:hover {
  cursor: pointer;
}


