body {
		background-color: #fff;		
        font: 0.75vw 'Open Sans', sans-serif;   
        color: #fff;
}

html {
  scroll-behavior: smooth;
}

a:link {
  text-decoration: none;
}

@font-face {
    font-family: 'text-security-disc';
    src: url('../fonts/text-security-disc.eot');
    src: url('../fonts/text-security-disc.eot?#iefix') format('embedded-opentype'),
        url('../fonts/text-security-disc.woff') format('woff'),
        url('../fonts/text-security-disc.ttf') format('truetype'),
        url('../fonts/text-security-disc.svg#text-security') format('svg');
}
 
input.password {
    font-family: 'text-security-disc';
    margin-bottom:5px
    text-align: center;
}

input[type="file"] {
    display: none;
}

img {
    image-orientation: from-image;
    width: 10vw;
}

figure { 
    display: inline-block;
    margin-right: -14px;
}

.overlay {
	position: relative; 
	bottom: 0; 
	left: -38px; 
	width: 35px;
	margin-right: -14px;
}

.custom-file-upload {
    border: 1px solid #ccc;
    display: inline-block;
    padding: 6px 12px;
    cursor: pointer;
    background-color: #ccc;
    border: 1px solid #000;
    border-radius: 20px;
    box-shadow: inset 0px 0px 5px #000;
}

.main {
  width: 100vw;
  height: 100vh;
  display: block;
  text-align: center;
  position: absolute;
  left: 0px;
  top: 0px;
  overflow: auto;
}

.main::after {
  content: "";
  background-color: #fff;	
  background: url(/images/Seal.png);
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  opacity: 0.75;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  position: absolute;
  z-index: -1;     
}

.instruct {
  color: #fff;
  font-size: 1vw;
  width: 100vw;
  min-height: 100vh;
  display: block;
  position: absolute;
  left: 0px;
  top: 0px;
  overflow: auto;
}

.instruct::after {
  content: "";
  background-color: #fff;	
  background: url(/images/Seal.png);
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  opacity: 0.75;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  position: absolute;
  z-index: -1;     
}

button::-moz-focus-inner {
 border: 0 !important;
}

/* Close X Button */
.close {
  position: absolute;
  left: 2px;
  top: 2px;
  width: 32px;
  height: 32px;
  opacity: 0.3;
}
.close:hover {
  opacity: 1;
}
.close:before, .close:after {
  position: absolute;
  left: 15px;
  content: ' ';
  height: 33px;
  width: 2px;
  background-color: #fff;
}
.close:before {
  transform: rotate(45deg);
}
.close:after {
  transform: rotate(-45deg);
}
	
h1 {
  display: block;
  color: #ccc;
  font-size: 2vw;
  margin-top: 0.67em;
  margin-bottom: 0.67em;
  margin-left: 0;
  margin-right: 0;
  font-weight: bold;
}

.hidden{
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.8s;
}

.unhidden{
    max-height: 600px;
    overflow: hidden;
    transition: max-height 0.8s;
}
	
  .enter {
    margin: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    display: inline-block;
    text-align: center;
    width: 40vw;
    min-height: 35vh;
    padding: 10px 0;
    border: 1px solid #000;
    border-radius: 20px;
    box-shadow: inset 0px 0px 50px #000;
  }

  .enter input {
    outline: none;
    width: 60%;
    height: 8%;
    font-size: 1.5vw; 
    text-align:center
  }

  .enter input:focus{
    outline: none;
  }
  
  label {
   font-size: 2vw; 
   color: #fff;
  }
  
  .photo {
  	width: 25vw;
  }

  .againButton {
    font-weight: bold;
    font-size: 2vw;
    display: inline-block;
    color: white;
    width: 12vw;
    height: 8vh;
    text-align: center;
    margin: 5px;
    background-image:linear-gradient(#ff7d0c,#ff3e0e);
    border-radius: 25px;
    box-shadow: 2px 2px 1px 0px #aaa;
  }

  .againButton:active {
    background-image:linear-gradient(#ff3e0e,#b02809);
  }

  .againButton:hover {
    background-image:linear-gradient(#ff3e0e,#b02809);
  }

   .submitButton {
    font-weight: bold;
    font-size: 2vw;
    display: inline-block;
    color: white;
    width: 20vw;
    height: 8vh;
    text-align: center;
    margin: 5px;
    background-image:linear-gradient(#ff7d0c,#ff3e0e);
    border-radius: 25px;
    box-shadow: 2px 2px 1px 0px #aaa;
  }

  .submitButton:active {
    background-image:linear-gradient(#ff3e0e,#b02809);
  }

  .submitButton:hover {
    background-image:linear-gradient(#ff3e0e,#b02809);
  }
  
.skip {
  background: #e77e23;
  height: 30px;
  left: 50%;
  padding: 8px;
  position: absolute;
  transform: translateY(-500%);
  transition: transform 0.3s;
}

.skip:focus {
  transform: translateY(0%);
}
  
