* {
  box-sizing: border-box;
}
html, body { 
    margin: 0;
    top: 0;
    left: 0;
    width: 100%; 
    height: 100%; 
    font-family: Prompt, sans-serif;
    scroll-behavior: smooth;
}
body{
    background-color: #000000;
}
.prompt-regular {
  font-family: "Prompt", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.prompt-medium {
  font-family: "Prompt", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.prompt-semibold {
  font-family: "Prompt", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.prompt-bold {
  font-family: "Prompt", sans-serif;
  font-weight: 700;
  font-style: normal;
}
a, p, h1, h2, h3, span {
    color: #ffffff;
    margin: 0;
}
h1{
    font-size: 35px;
    font-weight: 700;
    text-align: center;
    line-height: 30px;
}
h2{
    font-size: 14px;
    font-weight: 300;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 10px;
    line-height: 15px;
}
.flex{
    display: flex;
}
.center{
    margin: auto;
    justify-content: center;
}
.fullw{
    width: 100%;
}
.fullh{
    height: 100vh;
}
.relative{
    position: relative;
}
.absolute{
    position: absolute;
}
.spacer{
    display: flex;
    width: 100%;
    height: 25px;
}
#main{
    align-items: center;
}
#line{
    display: block;
    justify-self: center;
    align-self: center;
    background-color: white;
    width: 100px;
    height: 1px;
    margin: 10px auto;
}
#ddv{
    background: url(../img/ddv-desktop.jpg);
    background-position: left;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.75;
}
#optin{
    position: fixed;
    top: 50%;
    transform: translate(20%, -50%);
    padding: 30px;
}
#mc_embed_shell{
    max-width: 450px;
}
#mc_embed_signup{
    padding: 15px;
    border-radius: 12px;
    clear:left; 
    width: 100%;
}
mc_embed_signup_scroll{
    display: grid;
}
.mc-address-fields-group{
    display: flex;
}
.mc-field-group{
    display: flex;
    border: 1px solid #ffffff;
    border-radius: 50px;
}
input::placeholder{
    color: #ffffff;
    opacity: 0.8;
}
#mce-EMAIL{
    width: 100%;
    background: none;
    border-radius: 50px;
    border: none;
    padding: 10px 10px 10px 15px;
    color: #ffffff;
}
#mc-embedded-subscribe{
    max-width: 35%;
    margin: 3px;
    text-transform: uppercase;
    padding: 10px 20px;
    background-color: #ffffff;
    color: #000000; 
    border:none;
    border-radius: 50px;
}
#mc-embedded-subscribe::value{
    font-weight: 900;
}
#mc-embedded-subscribe:hover{
    cursor: pointer;
    opacity: 0.9;
}
/*RESPONSIVE*/
@media only screen and (max-width: 880px) {
    #ddv{
        background: url(../img/ddv-mobile.jpg);
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
      }  
    h1{
        font-size: 30px;
    }
    h2{
        font-size: 12px;
    }
    #optin{
        top: inherit;
        bottom: 0;
        transform: none;
        padding: 30px;
    }
    #mc-embedded-subscribe{
        max-width: 45%;
        font-size: 12px;
    }
    input::placeholder{
        font-size: 12px;
    }
}