.notice {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
  color: #005f9e;
}
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 105;
  background: rgba(229,229,229, .75);
}
.notice-content {
  max-width: 600px;
  font-family: 'Open Sans', sans-serif;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  z-index: 110;
  border: 10px solid #005f9e;
  background: #fff;
  box-shadow: 0 0 29px rgba(0,0,0, .35);
  text-align: center;
  padding: 30px 50px;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.4;
}
.notice h2 {
  font-weight: 800;
  font-size: 38px;
  font-family: 'Open Sans', sans-serif;
}
.btn {
  background: #f7a400;
  color: #fff;
  display: inline-block;
  padding: 10px 45px;
  text-decoration: none;
  margin: 35px 0;
}
.btn:hover {
  color: #fff;
}
.notice {
  display: none;
}
.reset {
  cursor: pointer;
  text-decoration: underline;
  color: blue;
}