span.linkHHOMM {
  cursor: pointer;
  display: inline-block;
}

/* 공개범위 설정 */

body.parking *:not(#container){
  display: none;
}

body.parking {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  position: relative;
  background-color: #000;
  background-image: url('../img/hhomm_symbol.svg');
  background-size: 150px;
  background-repeat: no-repeat;
  background-position: center;
}

body.parking::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-size: cover;
  background-position: center;
  position: relative;
  animation: blinker 10s linear infinite;
}

@keyframes blinker {
  50% { 
    -webkit-filter: blur(4px) contrast(300%) grayscale(100%) opacity(25%);
	  filter: blur(4px) contrast(300%) grayscale(100%) opacity(25%);
  }
}

body.parking-00::before { background-image : url('../img/parking/parking-00.jpg'); }
body.parking-01::before { background-image : url('../img/parking/parking-01.jpg'); }
body.parking-02::before { background-image : url('../img/parking/parking-02.jpg'); }
body.parking-03::before { background-image : url('../img/parking/parking-03.jpg'); }
body.parking-04::before { background-image : url('../img/parking/parking-04.jpg'); }
body.parking-05::before { background-image : url('../img/parking/parking-05.jpg'); }
body.parking-06::before { background-image : url('../img/parking/parking-06.jpg'); }
body.parking-07::before { background-image : url('../img/parking/parking-07.jpg'); }
body.parking-08::before { background-image : url('../img/parking/parking-08.jpg'); }
body.parking-09::before { background-image : url('../img/parking/parking-09.jpg'); }

body.parking::after {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  background: url('../img/dot.png') center repeat;
}

body.parking #container {
  position: absolute;
  display: flex;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 5;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#000000+0,000000+100&0.25+0,0.85+100 */
  background: -moz-linear-gradient(top,  rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.85) 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(top,  rgba(0,0,0,0.25) 0%,rgba(0,0,0,0.85) 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom,  rgba(0,0,0,0.25) 0%,rgba(0,0,0,0.85) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#40000000', endColorstr='#d9000000',GradientType=0 ); /* IE6-9 */
}

body.parking #container * {
  display: none;
}

body.parking #container::before {
  content: '웹사이트 점검중입니다';
  margin: calc(50vh + 75px) auto auto;
  font-size: 1.35em;
  font-weight: 500;
  color: #fff;
  padding-bottom: 0.35em;
  border-bottom: 2px solid #fff;
  z-index: 6;
  opacity: 0.45;
}

body.parking #container::after {
  content: '관련 문의는 office@hhomm.com으로 부탁드립니다';
  width: 100%;
  top: calc(50vh + 125px);
  font-size: 75%;
  text-align: center;
  color: #fff;
  z-index: 6;
  position: absolute;
  cursor: pointer;
}

