@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Sorts+Mill+Goudy:ital@0;1&display=swap');

html,
body {
  height: 100%;
}
body {
    background: url('../images/background.jpg') no-repeat center center #090810;
    color: #FFFFFF;
    background-size: contain;
    font-family: "Playfair Display", serif;
    font-size: 14px;
}
body::after {
    content: '';
    background: rgba(0, 0, 0, .4);
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.btn-854567 {
    background: #854567;
    color: #FFFFFF;
    border-color: #854567;
}
.btn-854567:hover,
.btn-854567:focus,
.btn-854567:active,
.btn-854567.active {
    background: #9d6781!important;
    border-color: #9d6781!important;
}

.landing-wrapper {
    max-width: 500px;
    padding: 1rem;
    position: relative;
    z-index: 9;
}
.landing-wrapper h1 {
    position: relative;
}
.landing-wrapper h1::after {
    content: '';
    height: 1px;
    background: rgba(255, 255, 255, .7);
    width: 50px;
    display: table;
    margin: 15px auto;
}
.landing-wrapper .btn-submit {
    min-width: 150px;
    font-weight: 450;
    border-radius: 20px;
    padding: 12px 28px;
    position: relative;
    overflow: hidden;
}

.footer-text { font-size: 11px; color: #d7d7d7; line-height: 13px;}
.footer-text a { color: #d7d7d7; text-decoration: none;}

.btn::after {
    content: '';
    width: 30px; height: 30px;
    border-radius: 100%;
    border: 6px solid #d7d7d7;
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: ring 2.5s infinite;
}

@keyframes ring {
    0% {
        width: 30px;
        height: 30px;
        opacity: 1;
    }
    100% {
        width: 300px;
        height: 300px;
        opacity: 0%;
    }
}

@media (max-width: 767.98px) { 

    html,
    body {
        height: auto;
    }
    body {
        background-size: 120%;
        background-position: top center;
    }

}