@font-face {
  font-family: 'Avenir';
  src: url('/fonts/AvenirLTStd-Book.otf');
}

html {
}
  
body {
    margin: 0;
    padding: 0;
    color: #000000;
    font-size: 0;
    min-height: 100%;
    width:100%;
    background: #000;    
    -webkit-touch-callout: none;
    -webkit-text-size-adjust: none;
    -webkit-user-select: none;
}

video {
    position: fixed;
    height: 100%;
    width: 100%;
    object-fit: cover;
    background: #000;
}

body > a {
    position: fixed;
    display: block;
    top: 50%;
    margin-top:-100px;
    left: 50%;
    margin-left:-100px;
    width: 200px;
    display: none;
}  

  a img {
    width: 100%;
  }

  body > form {
    position: relative;
    display: block;
    text-align:center;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    padding: 20px 40px;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
  }
  
     body > form > input {
      text-align: center;
      border: none;
      width: 50vw;
      padding: 10px 50px;
      font-size: 12pt;
      border-radius: 5px;
      color: #000;
      margin-bottom: 20px;
    }

      body > form > input::placeholder {
        color: black;
        font-size: 12pt;
      }

      body > form >  input.error::placeholder {
        color:#ff0000;
        font-size: 12pt;
      }
  
    body > form > button {
      background: #cecece;
      border: none;
      padding: 10px 50px;
      font-size: 10pt;
      border-radius: 5px;
      font-weight:bold;
    }    
  
    form h1 {
      font-size: calc(12pt + 3vw);
      color: #fff;
      margin: 0;
      padding: 0;
      margin-bottom: 30px;
    }
  
    form p {
      color: #fff;
      font-size: 10pt;
      margin-top: 30px;
    }

      form p a {
        position: static;
        display: inline;
        color: #fff;
        margin: 0;
        padding: 0;
      }


/* copy */
#copy {
  position: relative;
  top: 5vh;
  left: 10vw;
  max-width: 460px;
  width: calc(100% - 20vw);
  box-sizing: border-box;
  height: 100%;
  z-index: 10000;
  color: white;
  font-family: 'Avenir', Arial, Helvetica, sans-serif;
  margin-bottom: 40px;
  box-sizing: border-box;
}

  #copy h1,
  #copy h1 a {
    color: white;
    font-size: 20pt;
    text-decoration: none;
  }

   #copy_more {
     color: white;
     top: 0px;
     left: 0px;
     width: 100%;
     height: 100%;
     font-size: 12.5pt;
     line-height: 1.5em;
     display: none;
   }

   #copy_more p a {
      color: white;
      padding: 0px 2px;
      font-weight: bold;
   }

    #copy_more .small {
       font-size: 11pt;
    }

    #copy_form {
      display: none;
      width: 100%;
      padding: 10px 5px;
      box-sizing: border-box;
      position: relative;
    }

      #copy_form_thankyou {
         display:none;
      }

      #copy_form  input,
      #copy_form  textarea {
        display: block;
        border: none;
        width: calc(100% - 20px);
        padding: 10px 10px;
        font-size: 12pt;
        border-radius: 5px;
        color: #000;
        margin-bottom: 20px;
        box-sizing: border-box;
      }

        #copy_form  textarea {
          margin-top: 10px;
          height: 200px;
        }

        #copy_form  label {
          font-weight: normal;
        }

        #copy_form > input::placeholder {
          color: black;
          font-size: 12pt;
        }

        #copy_form  >  input.error::placeholder {
          color:#ff0000;
          font-size: 12pt;
        }

      #copy_form button {
        background: #cecece;
        border: none;
        padding: 10px 50px;
        font-size: 12pt;
        border-radius: 5px;
        font-weight:bold;
         text-transform: uppercase;
      }  