body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font: 14px Helvetica,Arial,sans-serif;
}
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.black-overlay  {
    position: absolute;
    height: 100vh;
    width: 100%;
    background: black;
    opacity: .3;
    top: 0;
    animation: fadeOut 2s ease-in;
    animation-fill-mode: forwards;
}
.main-bg {
    /* background-image: url(/Jims-cropped.jpg); */
    height: 100vh;
    background-position: center;
    background-size: cover;
    
}
.signup-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    justify-content: space-around;
    align-items: center;
    height: 100%;
    padding: 20px 20px 50px;
    transition: .3s;
}
.jims {
    color: white;
    font-size: 50px;
    position: relative;
    z-index: 1  ;
    text-align: center;
    transition: .3s;
}
.coming-soon {
    color: white;
    font-size: 40px;
    margin-bottom: 50px;
    position: relative;
    z-index: 1  ;
    text-align: center;
    transition: .3s;
    animation: fadeIn 2s ease-in;
    animation-fill-mode: forwards;
}
#mc_embed_signup {
    background: #0000007d !important;
    max-width: 400px;
    width: 100%;
    animation: fadeIn 2s ease-in;
    animation-fill-mode: forwards;
}
#mc_embed_signup h2 {
    color: white;
    text-align: center;
}
#mc_embed_signup .mc-field-group label {
    color: white;
}
#mc_embed_signup .indicates-required {
    color: #e85c41;
}
#mc_embed_signup .mc-field-group input {
    background: none;
    border-radius: 0;
    border: none;
    border-bottom: 2px solid white;
    transition: .5s;
    font-weight: 600;
    color: white;
}
#mc_embed_signup input:focus {
    background: white;
    color: black !important;
}
#mc_embed_signup .button {
    background-color: white !important ;
    border: 1px solid white !important;
    border-radius: 0 !important;
    margin: 0 !important;
    transition: .3s;
    font-weight: 600 !important;
    color: black !important;
}
#mc_embed_signup form {
    padding: 30px 50px;
}
#mc_embed_signup .clear {
    display: flex;
    justify-content: center;
    padding: 20px;
}
#mc_embed_signup #mce-success-response {
    color: white !important;
    text-align: center !important;
}
@keyframes fadeOut {
    0% {
        opacity: 1;
    }
    25% {
        opacity: 1;
    }
    100% {
        opacity: 0.3;
    }
}
@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    25% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@media only screen and (max-width: 768px) {
    .jims {
        font-size:40px;
    }
    .coming-soon {
        font-size:30px;
    }
    .signup-container {
        padding: 100px 50px 25px;
    }
}
@media only screen and (max-width: 425px) {
    .jims {
        font-size:25px;
    }
    .coming-soon {
        font-size:25px;
    }
    .signup-container {
        padding: 30px 10px 10px;
    }
    #mc_embed_signup {
        background: #00000042 !important;
    }
}