@charset "utf-8";
/* CSS Document */

p{
  margin-bottom:20px;
  line-height:24px;
}

h1, h2{
  color:orange;
  font-size:24px;
  margin-bottom:20px;
  font-weight:bold;
  margin:20px 0;
}

h3{
  color:black;
  font-size:30px;
  margin-bottom:20px;
  font-weight:bold;
  margin:20px 0;
  text-decoration:underline;
}

#hover{
  position:fixed;
  background:#000;
  width:100%;
  height:100%;
  opacity: .8;
}

#modalPopup{
  position:absolute;
  width:700px;
  height:300px;
  background:#FFF7E4;
  left:50%;
  top:50%;
  z-index:9999;
  border-radius:20px;
  padding:30px 0;
  margin-left:-350px; /* width/2 + padding-left */
  margin-top:-120px; /* height/2 + padding-top */
  text-align:center;
  box-shadow:0 0 10px 0 #000;
}

#close{
  position:absolute;
  background:black;
  color:white;
  right:-15px;
  top:-15px;
  border-radius:50%;
  width:30px;
  height:30px;
  line-height:30px;
  text-align:center;
  font-size:8px;
  font-weight:bold;
  font-family:'Arial Black', Arial, sans-serif;
  cursor:pointer;
  box-shadow:0 0 10px 0 #000;
}