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

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

#background {
    display: block;
    height: 100%;
    background: url('../img/janky.png') no-repeat center top;
    background-size: 100% auto;
    position: absolute;

    width: 100%;
    min-width: 700px;
}

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

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

#logo {
    margin-bottom: 20px;
    width: 340px;
    max-width: 95vw;
    transition: all 0.2s ease-in-out;
}

#logo:hover {
    opacity: 0.7;
}

#logo img {
    width: 100%;
}

#title {
    margin-bottom: 20px;
    font-size: 34px;
    max-width: 95vw;
}

#blurb {
    font-weight: 100;
    margin-bottom: 57px;
    font-size: 18px;
    width: 800px;
    text-align: left;
    max-width: 95vw;
}

#email {
    font-weight: 100;
    border: 1px solid #ccc;
    background-color: white;
    padding: 3px 5px;
    width: 300px;
}

#submit {
    background-color: #13a89e;
    color: white;
    font-weight: 600;
    font-size: 18px;
    border: none;
    border-radius: 6px;
    padding: 8px 25px;
    margin-top: 20px;
}

#copyright {
    display: block;
    position: absolute;
    bottom: 3px;
    width: 100%;
    margin: 0 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;
}