@import url('https://fonts.googleapis.com/css2?family=Antic+Slab&display=swap');

body {
    background: #fff5ed;
    color: #2c3550;
    background-size: contain;
    font-family: "Antic Slab", serif;
    font-size: 14px;
}


.btn-2c3550 {
    background: #2c3550;
    color: #fef4ec;
    border-color: #2c3550;
}
.btn-2c3550:hover,
.btn-2c3550:focus,
.btn-2c3550:active,
.btn-2c3550.active {
    background: #171b27!important;
    border-color: #171b27!important;
    color: #fef4ec;
}

.landing-wrapper {
    background: url('../images/background.jpg') no-repeat top center #fff5ed;
    max-width: 420px;
    background-size: 100%;
}

.header-box { color: #FFFFFF; padding: 10px;}

.content-box {
    margin-top: 300px;
    padding: 15px;
    font-size: 15px;
}
.content-box h1 {
    font-size: 44px;
    line-height: 40px;
    margin-bottom: 30px;
    text-shadow: 4px 4px 4px rgba(0,0,0,0.6);
}

.content-box .btn-submit {
    min-width: 180px;
    border-radius: 20px;
    padding: 8px 24px;
    overflow: hidden;
    font-size: 24px;
    position: relative;
    animation: pulse 2s infinite;
}

.content-box .btn-submit span {
    display: block;
    position: relative;
    z-index: 10;
}
.content-box .button-box { position: relative; margin: 20px 0; padding: 20px 10px;}
.content-box .button-box::before {
    content: '';
    background: url('../images/seperator.png') no-repeat center center;
    background-size: 100%;
    width: 100%;
    height: 5px;
    position: absolute;
    top: 0;
    left: 0;
}
.content-box .button-box::after {
    content: '';
    background: url('../images/seperator.png') no-repeat center center;
    background-size: 100%;
    width: 100%;
    height: 5px;
    position: absolute;
    bottom: 0;
    left: 0;
}

.footer-box { font-size: 11px; color: #2c3550; line-height: 15px; padding: 0 15px 15px 15px; margin-top: -15px;}
.footer-box a { color: #2c3550; text-decoration: none;}


@-webkit-keyframes pulse {
    to {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 transparent
    }
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, .7)
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px transparent
    }

    to {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 transparent
    }
}

@media (max-width: 767.98px) { 

    html,
    body {
        height: auto;
    }
    body {
        background-size: 120%;
        background-position: top center;
    }

}