
body,html{
   height:100%;
   margin: 0;
   font-family: 'Source Sans Pro', sans-serif;

   
   
}
.project_container{
    background-image:url('/assets/landing_bg.jpg');
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
  
   
}

.start_button{
    font-family: 'Source Sans Pro', sans-serif;
    width:20%;
    height: 10%;
    position: absolute;
    top:75%;
    left:72%;
    color:white;
    font-size:5vmin;
    font-weight: 600;
    background: none;
    border: 2px solid #e8068a ;
    cursor: pointer;
    transition: all 0.5s;
   
}

.start_button:hover{

    background-color: #e8068a;
}

.start_button span:after {
    
    position: absolute;
    opacity: 0;
    top: 0;
    right: -20px;
    transition: 1.0s;
  }
  /*
  .start_button:hover span {
    padding-right: 25px;
    transition: 1.0s;
  }*/
  
  .start_button:hover span:after {
    opacity: 1;
    right: 0;
  }

.project_description{
    color: white;
    position: absolute;
    font-style: oblique;
    top:90%;
    left:6%;
    right:6%;
    font-size: 2vmin;

}

.info_button{
  position: absolute;
  top:55%;
  left:72%;
  cursor: pointer;
  transition: all 0.5s;
  width:7%;
}
.info_image{
  width: 90%;
  transition: all 0.5s;
}





.content_modal{
  background-color:#e8068a;
  width:30%;
  height: 50%;
  padding: 2%;
  margin: 10% auto;
  position: relative;
  border:#e8068a;
  border-color: #e8068a;
  border-radius: 10px;
  font-size: 2.4vh;
  overflow-y: auto;
  

}

.info_modal{
  background-color: rgba(0,0,0,.8);
  color: black;
  position:fixed;
  top:0;
  right:0;
  bottom:0;
  left:0;
  opacity:0;
  pointer-events:none;
  transition: all 1s;
  line-height: 150%;

 
}
#infoWin:target{
  opacity:1;
  pointer-events:auto;
}

.info_close{
 
  background-color: black;
  color: #e8068a;
  font-size: 100%;
  text-align: left;
  justify-content: left;
  border-color: black;
  transition: all 1s;
  cursor: pointer;
  position: sticky;
}

.info_close:hover{
color: black;
background-color: #e8068a;
border-color: #e8068a;
transition: all 1s;
}
div::-webkit-scrollbar {
  width: 5px;
  height:5px;
}

/* Track */
div::-webkit-scrollbar-track {
  background: gray; 
  border-radius: 8px;
}
 
/* Handle */
div::-webkit-scrollbar-thumb {
  background: #ca0779;
  border-radius: 8px; 
}

/* Handle on hover */
div::-webkit-scrollbar-thumb:hover {
  background: #e8068a; 

}
