html {
  height: 100%;
}

body {
  height: 100%;
  background: #111;
  color: #fff;
  font-family: 'Cormorant', serif;
}

#pr {
  background: none;
  color: inherit;
  padding: 0;
  margin: 0;
}

#prcentre {
  color: inherit;
  max-width: 900px;
  margin: 0 auto;
}

#prframe {
  padding: 6em 1em 6em;
}

p {
  line-height: 1.4em;
  color: #CCC;
  font-size: 1.3em;
}

h1, h2 {
  font-family: 'Cormorant', serif;
  letter-spacing: .2em;
  letter-spacing: -.06em;
  text-transform: uppercase;
}

h2 {
  font-size: 3.6em;
  opacity: .2;
  line-height: 1em;
  padding: 0;
  margin: 0;
  color: var(--color-neutral07);
  font-weight: 400;
}

h1 {
  font-size: 5.2em;
  font-weight: 300;
  color: #b53471;
  margin-bottom: 0;
  line-height: 1em;
  margin: 0 0 .2em;
  width: 80%;
}


.pr {
  letter-spacing: .2em;
  text-transform: uppercase;

  text-decoration: none;
}









/** LIGHTBOX MARKUP **/

.lightbox {
  display: none;
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, .4);
/*  background: rgba(255, 255, 255, .01);*/
  backdrop-filter: blur(.08em);
}

.lightbox:target {
  display: block;
}

.lightbox h3, .lightbox ul {
  margin: .2em 0 0;
}

.lightbox h4 {
  margin: 1em 0 .4em;
  font-size: 1.2em;
}


#lightin {
  background: rgba(0,0,0,.9);
  padding: 2em;
  display: inline-block;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  overflow: auto;
  box-shadow: 0 0 50px #000;
  border: 1px solid #b53471;
}

.btnclose {
/*  background: rgba(254,254,254,.6) url('https://www.mithraeum.eu/images/ico-arrows.png') -4em 0 / 6em no-repeat;
  opacity: .9;
/*  border-radius: 3em;
  width: 2em;
  height: 2em;
  position: absolute;
  text-decoration: none;
  cursor: pointer;
  z-index: 2;
  top: 1em;
  right: 1em;
*/}


/*** FORM ***/
.aform input[type="text"],
.aform input[type="date"],
.aform input[type="datetime"],
.aform input[type="email"],
.aform input[type="number"],
.aform input[type="search"],
.aform input[type="time"],
.aform input[type="url"],
.aform input[type="password"],
.aform textarea,
.aform select 
{
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  outline: none;
  display: block;
  width: 100%;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, .8);;
  background: transparent;
  color: #ccc;
  font: 1em 'Cormorant', serif;

  letter-spacing: .02em;

  padding: 10px;
  margin-bottom: 10px;
  font-size: 22px;
  height: 46px;
}

.aform textarea {
  resize: none;
  overflow: hidden;
}

.aform input[type="text"]:hover,
.aform input[type="date"]:hover,
.aform input[type="datetime"]:hover,
.aform input[type="email"]:hover,
.aform input[type="number"]:hover,
.aform input[type="search"]:hover,
.aform input[type="time"]:hover,
.aform input[type="url"]:hover,
.aform input[type="password"]:hover,
.aform textarea,
.aform select {
  border-color: rgba(255, 255, 255, 1);
  color: rgba(255, 255, 255, 1);
}

.aform input[type="button"], 
.aform input[type="submit"], .btnclose {
/*  -moz-box-shadow: inset 0px 1px 0px 0px #45D6D6;
  -webkit-box-shadow: inset 0px 1px 0px 0px #45D6D6;
  box-shadow: inset 0px 1px 0px 0px #45D6D6;
*/
  background-color: transparent;
  border: none;
  display: inline-block;
  cursor: pointer;
  font-size: 22px;
  padding: .4em 1em;
  text-decoration: none;
  text-transform: uppercase;
  font-family: 'Cormorant', serif;
  border: 1px solid #ccc;
  margin: 1em 1em 0 0;
  float: right;
  border-color: rgba(255, 255, 255, .8);
  color: rgba(255, 255, 255, .8);
}

.btnclose {
  border-color: rgba(255, 255, 255, .4);
  color: rgba(255, 255, 255, .4);
}

.aform input[type="button"]:hover, 
.aform input[type="submit"]:hover, .btnclose:hover {
  border-color: rgba(255, 255, 255, 1);
  color: rgba(255, 255, 255, 1);
}


















@media screen and (max-width: 360px) {
  h1 {
    font-size: 4em;
  }
  h2 {
    font-size: 2.6em;
  }
}