html,
{
box-sizing: border-box;
}
body {
  

  background: #000 ;
  color: #ccc;
  font-family: monospace;
  font-size: 18px;
  margin: 0;
  padding: 0;
  overflow: hidden;
}


a:link,a:visited {
   color: #ccc;
   background-color: #;
   text-decoration: none;
   target-new: none;
  }
a:hover {
   color: White;
   background-color: #;
   text-decoration: underline;
   target-new: none;
  }
  
.center-div {
  position: absolute;
  margin: auto;
  top: 20%;
  right: 0;
  bottom: 20%;
  left: 0;
  width: 80%;
  max-width: 800px;
  padding: 20px;
  height: auto;
  background-image: url("images/transp_shape_logo.png");
  background-position: center center; 
  background-size: contain;
  background-repeat: no-repeat;
  background-color: rgba(0, 0, 0, 0.666);
  border-radius: 3px;
}

/*modal*/

{
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.modalDialog {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 99999;
    opacity:0;
    -webkit-transition: opacity 100ms ease-in;
    -moz-transition: opacity 100ms ease-in;
    transition: opacity 100ms ease-in;
    pointer-events: none;
}
.modalDialog:target {
    opacity:1;
    pointer-events: auto;
}
.modalDialog > div {
    max-width: 800px;
    width: 90%;
    position: relative;
    margin: 10% auto;
    padding: 20px;
    border-radius: 3px;
    background: rgba(0, 0, 0, 0.8);
}
.close {
    font-family: Arial, Helvetica, sans-serif;
    background: #000;
    color: #fff;
    line-height: 25px;
    position: absolute;
    right: -12px;
    text-align: center;
    top: -10px;
    width: 34px;
    height: 34px;
    text-decoration: none;
    font-weight: bold;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    -moz-box-shadow: 1px 1px 3px #000;
    -webkit-box-shadow: 1px 1px 3px #000;
    box-shadow: 1px 1px 3px #000;
    padding-top: 5px;
}
.close:hover {
    background: #2C2C2C;
}

