* {
    margin: 0;
    padding: 0;
}

body {
    width: 100vw;
    height: 90vh;
    padding-top: 10vh;
    background: #2820a0; /* Old browsers */
    background: -moz-linear-gradient(-45deg, #2820a0 0%, #5c2ffc 41%, #1d0f5e 65%, #8e86f9 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(-45deg, #2820a0 0%,#5c2ffc 41%,#1d0f5e 65%,#8e86f9 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(135deg, #2820a0 0%,#5c2ffc 41%,#1d0f5e 65%,#8e86f9 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#2820a0', endColorstr='#8e86f9',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
}

.comingSoon {
    margin: 0 auto;
    max-width: 600px;
    width: 90%;
}

.comingSoon p {
    text-align: center;
    font-size: 1.25rem;
}

.lgBrand {
    display: block;
    margin: 0 auto;
    width: 90%;
}

.tagline{
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    text-align: center;
}

.tagline h3 {
    font-size: 2.5rem;
}

.tagline h4 {
    font-size: 1.75rem;
}

.lgButton {
    display: block;
    margin: 1.5rem auto;
    padding: .8rem;
    border-radius: .5rem;
    font-size: 1.75rem;
    font-weight: 700;
    color: #1d0f5e;
    text-decoration: none;
    cursor: pointer;
}

a {
    text-decoration: none;
}

p a {
    color: #000;
}

footer {
    padding-top: 1rem;
    text-align: center;
}

/* Popup box BEGIN */
.hoverPopup{
    cursor:pointer;
    display:none;
    height:100%;
    position:fixed;
    /*text-align:center;*/
    top:0;
    width:100%;
    z-index:10000;
    color: #fff;
}
.hoverPopup .helper{
    display:inline-block;
    height:100%;
    vertical-align:bottom;
}
.hoverPopup > div {
    background-color: #1d0f5e;
    box-shadow: 10px 10px 60px #5b2ffce5;
    display: inline-block;
    height: auto;
    max-width: 35vw;
    min-height: 25vh;
    vertical-align: middle;
    width: 40%;
    position: relative;
    border-radius: 8px;
    padding: 2rem 5%;
    margin: 0 auto;
}
.popupClose {
    background-color: #fff;
    border-radius: 50px;
    cursor: pointer;
    display: inline-block;
    font-family: arial;
    font-weight: bold;
    position: absolute;
    top: -20px;
    right: -20px;
    font-size: 25px;
    line-height: 30px;
    width: 30px;
    height: 30px;
    text-align: center;
    color: rgb(42, 0, 77);
}
.popupClose:hover {
    background-color: rgb(0, 0, 0);
    color: #fff;
}
/* Popup box END */

/* Form */
label {
    display: block;
    margin-top: .8rem;
    font-size: 1.25rem;
}

label textarea {
    display: block;
    margin-bottom: 1.5rem;
}

fieldset {
    margin-top: .8rem;
    margin-bottom: .8rem;
    padding: .2rem;
}

fieldset legend {
    font-size: 1.5rem;
}

fieldset label {
    display: inline;
    font-size: 1.15rem;
}

fieldset select {
    font-size: 1.05rem;
}

input { 
    width: 15rem; 
    height: 1.75rem; 
}

.submit {
    width: 10rem;
    padding: 1.15rem;
    font-size: 5rem;
    font-weight: 700;
}