body, button, input, select, textarea {
    font-family: Jura, sans-serif;
    font-weight: 300;
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: Roboto, sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    color: white;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
    background-color: #27293d;
    font-weight: 300;
    font-size: 17px;
}

nav {
    background-color: #393960;
}

footer {
    width: 100%;
    background-color: #393960;
}

button {
    font-size: 0.8rem;
}

.wallet-container {
    background-color: var(--bs-body-bg2);
    border-radius: 8px;
    padding: 20px;
    margin-top: 20px;
}


/*tab setting*/
html, body {
    background: var(--bs-body-bg);
    margin: 0;
}

.centered {
    height: 100%;
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    background: #27293dd5;
    /*filter: blur(10px) contrast(20);*/
}

.blob-1, .blob-2 {
    width: 70px;
    height: 70px;
    position: absolute;
    background: #fff;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.blob-1 {
    left: 20%;
    animation: osc-l 3s ease infinite;
    background: #d89e9e;
}
.blob-2 {
    left: 80%;
    animation: osc-r 3s ease infinite;
    background: #8080c8;
}
@keyframes osc-l {
    0% {
        left: 40%;
    }

    50% {
        left: 50%;
    }

    100% {
        left: 40%;
    }
}

@keyframes osc-r {
    0% {
        left: 60%;
    }

    50% {
        left: 50%;
    }

    100% {
        left: 60%;
    }
}

.qr-container {
    background-color: #202237;
    padding: 15px;
    border-radius: 8px;
}

.copy-button {
    background-color: #00c9a7;
    color: white;
    border: none;
    border-radius: 4px;
    padding: 10px 20px;
}

.alert-warning {
    background-color: #ff5757;
    color: white;
}

.nav-link {
    background: #3939607a;
    background-color: #3939607a;
}