body {
    font-family: Palanquin, sans-serif;
    background-color: white;
}

#container {
    position: relative;
    /* background-color: cyan; */
    height: 100vh;
    min-height: 600px;
    overflow-x: hidden;
}

#background {
    position: fixed;
    display: block;

    background: linear-gradient(to top, #ccc, #f7f7f7);

    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    mix-blend-mode: multiply;
}

#center {
  position: absolute;
  top: 50%;
  transform: translateY(-50%) translateX(-50%);
  left: 50%;
  /* background-color: yellow; */
  text-align: center;
  width: 850px;
}

#def-position {
    margin: 0 auto;
}

.def-head, .def-content {
    font-size: 14px;
}

.def-head {
    font-style: italic;
    font-weight: 600;
    text-align: right;
    padding-right: 5px;
    white-space: nowrap;
}

.def-content {
    text-align: left;
    font-weight: 100;
}

#logo, #title, .blurb {
    margin: 0 auto;
}

#logo {
    width: 200px;
    max-width: 95vw;
    transition: all 0.2s ease-in-out;
}

#logo:hover {
    opacity: 0.7;
}

#logo img {
    width: 100%;
}

#title {
    margin-bottom: 16px;
    font-size: 26px;
    max-width: 95vw;
    font-weight: 100;
    margin-top: 30px;
}

.blurb {
    font-weight: 100;
    margin-bottom: 15px;
    font-size: 17px;
    text-align: left;
    max-width: 95vw;
}

p, td, h1 {
    cursor: default;
}

#glass {
    padding: 2px 27px;
    background-color: rgba(255,255,255,0.8);
}

#signup input {
    font-weight: 100;
    border: 1px solid #ccc;
    background-color: white;
    padding: 3px 5px;

    height: 24px;
    margin-bottom: 4px;
}

#name {
    width: 200px;
}

#phone {
    width: 115px;
}

#email, #referrer {
    width: 330px;
}

#submit {
    background-color: #13a89e;
    color: white;
    font-weight: 600;
    font-size: 16px;
    border: none;
    border-radius: 6px;

    display: block;
    margin: 3px auto;

    padding: 5px 20px;
}

#copyright {
    display: inline-block;
    width: 100%;
    margin: 4px auto;
    font-size: 10px;
    text-align: center;
    color: #777;
}

a {
    text-decoration: none;
    color: #1F8FB1;
    transition: all 0.2s ease-in-out;
}

a:hover {
    color: #7ba;
    transition: all 0.2s ease-in-out;
}

#spotlights {
    position: fixed;
    top: 0; bottom: 0; left: 0; right: 0;
    overflow: hidden;
}

#spotlights svg {
    position: absolute;

    transform-origin: 10% 50%;
    -webkit-transform-origin: 10% 50%;
}

#thanks {
    display: none;
    font-weight: 100;
    color: #ec008c;
    margin-top: 30px;
    font-size: 20px;
}

#error {
    display: none;
    margin-top: 2px;
    font-size: 14px;
    font-weight: 100;
    color: #ec008c;
}

#bottom {
    padding-top: 10px;
    height: 170px;
}

*:focus {
    outline: 0;
}

@media (max-device-width:800px), (max-width:800px) {
    #center {
      box-sizing: border-box;
      position: relative;
      text-align: center;
      transform: none;
      width: 100vw;
      padding: 5vw;
      left: auto;
      top: 0;
    }

    #spotlights svg {
        transition: all 0.2s ease-in-out;
    }

    .def-head, .def-content {
        font-size: 9px;
    }

    .def-head {
        font-style: italic;
        font-weight: 600;
        text-align: right;
        padding-right: 5px;
    }

    .def-content {
        text-align: left;
        font-weight: 100;
    }

    #bottom {
        height: 220px;
    }

    #signup input {
        width: 100%;
        margin-bottom: 5px;
    }

    #submit {
        margin-bottom: 5px;
        padding: 5px 7px;
    }
}
