@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body,
html {
    height: 100%;    
}

:root {
    --width_tot: 300px;
    --height_tot: 150px;
    --width_tot_min_green: 225px;
    --zaobljenje: 15px;
    --zlatna: rgb(140, 121, 209);
}

.bg {
    /* The image used */
    background-image: url("../img/yoga2.jpg");

    filter: blur(4px);
    -webkit-filter: blur(4px);

    /* Full height */
    height: 100%;

    /* Center and scale the image nicely */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 0%;
}







.yoga-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 2.2em;
    color: azure;
    text-shadow: #FC0 1px 0 10px;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-image: linear-gradient(rgba(82, 80, 71, 0.603), rgba(172, 172, 167, 0.511));
    background-size: 100% 0px;
    background-repeat: no-repeat;
    background-position: 100% 0%;
    transition: background-size .7s, background-position .5s ease-in-out;
    margin-top: 15px;
    margin-bottom: 15px;
}

.yoga-title:hover {
    background-size: 100% 100%;
    background-position: 0% 100%;
    transition: background-position .7s, background-size .5s ease-in-out;
    padding: 10px;
    border-radius: var(--zaobljenje);
}

.container {
    margin-top: 10px;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
} 

.content {
    width: 360px;
    height: 40px;
    box-shadow: 2px 4px 10px rgba(0, 0, 0, .2);
    border-radius: 60px;
    overflow: hidden;
}

.container100Perc {
    margin-top: 10px;
    width: 100%;
    height: 100%;
    margin: auto;
} 

.subscription {
    position: relative;
    width: 100%;
    height: 100%;
}

.subscription .add-email {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    outline: none;
    padding: 0 20px;
}

.subscription .submit-email {
    position: absolute;
    top: 0;
    right: 0;
    height: calc(100% - 2px);
    width: 100px;
    border: none;
    border-radius: 60px;
    outline: none;
    margin: 1px;
    padding: 0 20px;
    cursor: pointer;
    background: #4ABEBB;
    color: #FFFFFF;
    transition: width .35s ease-in-out,
        background .35s ease-in-out;
}

.subscription.done .submit-email {
    width: calc(100% - 2px);
    background: #7c911d;
}

.subscription .submit-email .before-submit,
.subscription .submit-email .after-submit {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    line-height: 38px;
    transition: visibility .35s ease-in-out,
        opacity .35s ease-in-out;
}

.subscription.done .submit-email .before-submit,
.subscription:not(.done) .submit-email .after-submit {
    visibility: hidden;
    opacity: 0;
}

.subscription .submit-email .after-submit {
    transition-delay: .35s;
}

.subscription:not(.done) .submit-email .before-submit,
.subscription.done .submit-email .after-submit {
    visibility: visible;
    opacity: 1;
}

.bg-whole-page {
    height: 100%;
    border-radius: 0%;
    position: relative;
    /* z-index: -100; */
    overflow: hidden;    
}

.bg-image {
    background-image: url("../img/yoga2.jpg");
    filter: blur(4px);
    -webkit-filter: blur(4px);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
}

.whiteBgDiv {
    width: var(--width_tot);
    height: var(--height_tot);
    background-color: #e14747;
    position: relative;
    border-radius: 15px;
    padding: 15px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 30vh;
}

.whiteDiv {
    width: var(--width_tot_min_green);
    height: var(--height_tot);
    background-color: #FFFFFF;
    position: absolute;
    top: 0px;
    left: 0px;
    border-radius: var(--zaobljenje);
    padding: 15px;
    text-align: center;
    box-shadow: 0px 0px 8px 0 rgba(0, 0, 0, 0.5), 0px 0px 5px var(--zlatna) inset;
    /* display: none; */
}

.greenDiv {
    width: 100px;
    height: var(--height_tot);
    /* line-height: var(--height_tot); */
    background-color: #4ABEBB;
    font-size: 45px;
    position: absolute;
    top: 0px;
    right: 0px;    
    padding: 15px;
    /* padding-right: 15px; */
    border-top-right-radius: var(--zaobljenje);
    border-bottom-right-radius: var(--zaobljenje);    
}

.darkTxt {
    font-family: 'Bebas Neue', cursive;
    color: rgb(17, 70, 75);
    text-shadow: rgb(110, 68, 134) 1px 0 10px;
    font-size: 15px;
    margin-top: 10px;
}

.whole_line {
    font-family: 'Bebas Neue', cursive;
    font-size: 20px;
    padding: 0px;
    color: rgb(73, 90, 90);
    text-shadow: rgb(167, 87, 214) 1px 0 10px;
    margin-bottom: 20px;
}

.paypalLogo {
    width: 55px;
    filter: drop-shadow(4px 4px 10px rgb(231, 227, 207));
    /* box-shadow: 0px 0px 8px rgb(231, 227, 207); */
    float: right;
}

.price {
    font-family: 'Bebas Neue', cursive;
    color: azure;
    text-shadow: #FC0 1px 0 10px;
    margin-top: 20px;
    float: right;
}

.e4e_srce {
    height: 65px;
    /* margin-top: -10px; */
    filter: drop-shadow(5px 5px 5px rgba(0, 0, 0, 0.5));
    transition: transform .5s;
}

.e4e_srce:hover {
    transform: scale(1.2);
}


.euro_sign {
    font-size: 30px;
}

.clearfix {
    clear: both;
}

@media only screen and (max-width: 480px) {
    :root {
        --width_tot: 290px;
        --height_tot: 150px;
        --width_tot_min_green: 220px;
        --zaobljenje: 10px;
    }        
    .whole_line {
        margin-bottom: 9px;
        font-size: 19px;
    }

    .darkTxt {
        margin-top: 9px;
        font-size: 13px;
    }

    .e4e_srce {
        height: 80px;
        margin-top: -5px;
    }

    .price {
        font-size: 45px;
        margin-top: 30px;
    }
    .euro_sign {
        font-size: 18px;
    }

    .paypalLogo {
        margin-top: -5px;
        width: 43px;
    }
    
    
}