*{
    margin:0;
    padding:0;
  }

  :root {
    --detail-font-size: 14px;
  }

  body {
    font-family: Arial, Helvetica, sans-serif;
}
  
  .qtip-content {
    font-size: 16px;
  }
  body{
    font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
    font-size:17px;
    color:#8d8c8b;
    line-height:1.6;
  }
  
  #showcase{
    /*
    background-image:url('/Content/pics/National Oilwell Varco Logo - High Res.png');
    background-size: 80%;
    background-position:150px 200px;
    background-repeat: no-repeat; */
    height:100vh;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    padding:0 20px;
  }
  
  #showcase h1{
    font-size:50px;
    line-height:1.2;
  }
  
  #showcase p{
    font-size:20px;
  }
  
  #showcase .button{
    font-size:18px;
    text-decoration:none;
    color:#8d8c8b;
    border:#666 1px solid;
    padding:10px 20px;
    border-radius:6px;
    margin-top:20px;
    margin-left:10px;
  }

  #showcase .button:active {
    /*background-color: #3e8e41;*/
    filter:opacity(0.3);
    box-shadow: 0 2px 10px #666;
    transform: translateY(4px);
}
  
  #showcase .button:hover{
    background-color: whitesmoke;
    box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24), 0 17px 50px 0 rgba(0,0,0,0.19);
    cursor: pointer;
  }
    


.modal {
  display: none; /* Hidden by default because we need to launch event first */
  position: fixed; 
  z-index: 1; 
  padding-top: 100px; 
  left: 0px;
  top: 0;
  width: 100%; 
  height: 100%; 
  overflow: auto; /* Enable scroll if needed-- might not want scroll*/
  background-color: rgb(0,0,0); 
  background-color: rgba(0,0,0,0.4); 
}

.modal-content {
  position: relative;
  background-color: #fefefe;
  margin: auto;
  padding: 0;
  border: 1px solid #888;
  width: 80%;
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
  -webkit-animation-name: animatetop;
  -webkit-animation-duration: 0.4s;
  animation-name: animatetop;
  animation-duration: 0.4s
}

@-webkit-keyframes animatetop {
  from {top:-300px; opacity:0} 
  to {top:0; opacity:1}
}

@keyframes animatetop {
  from {top:-300px; opacity:0}
  to {top:0; opacity:1}
}

.close {
  color: white;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

.modal-header {
  padding: 2px 16px;
  background-color:#2c2e2c;
  color: white;
  border-radius: 5px;
}

.modal-body {
  padding: 2px 16px;
  color: whitesmoke;
  border: #2c2e2c solid 2px;
  border-radius: 5px;
}

.modal-footer {
  padding: 2px 16px;
  background-color: #2c2e2c;
  color: white;
  border-radius: 5px;
}