html {
    position: relative;
    min-height: 100%;
}

body {
    background-image: linear-gradient(180deg, rgb(189, 210, 182),rgb(162, 178, 159));
    margin-bottom: 60px;
}
.footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    white-space: nowrap;
    line-height: 60px; /* Vertically center the text there */
}

header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999;
}

.btn-trcg-primary, .badge-trcg-primary {
    background-color: #425F71 !important;
    color: #fff !important;
}

.btn-trcg-secondary, .badge-trcg-secondary {
    background-color: #548E88 !important;
    color: #fff !important;
}

    .btn-trcg-secondary, .badge-trcg-secondary :active {
        opacity: 0.4
    }

.btn-trcg-success, .badge-trcg-success {
    background-color: #819561 !important;
    color: #fff !important;
}

.btn-trcg-danger, .badge-trcg-danger {
    background-color: #D68476 !important;
    color: #fff !important;
}

.btn-trcg-warning, .badge-trcg-warning {
    background-color: #D1BA59 !important;
    color: #fff !important;
}

.btn-trcg-info, .badge-trcg-info {
    background-color: #25A3F6 !important;
    color: #fff !important;
}

.btn:active {
    opacity: 0.7
}

.loader {
    position: relative;
    height: 20px;
    width: 20px;
    display: inline-block;
    animation: around 5.4s infinite;
}
@import url('https://fonts.googleapis.com/css?family=Paytone+One');

.app-title {
    font-family: "Paytone One", sans-serif;
    font-weight: bold;
    font-size: 41px;
    letter-spacing: 1px;
    word-spacing: 3px;
    color: rgba(252, 252, 252, 0.45);
    background-color: rgba(0, 0, 0, 0.02);
    text-shadow: rgba(0, 0, 0, 0.66) 2px 2px 2px;
}

.trcg-fancy-link {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    position: relative;
    transition: color 0.3s ease;
}

    .trcg-fancy-link::before {
        content: '';
        position: absolute;
        left: 0;
        bottom: -2px;
        width: 100%;
        height: 2px;
        background-color: #fff;
        transform: scaleX(0);
        transform-origin: bottom right;
        transition: transform 0.25s ease-out;
    }

    .trcg-fancy-link:hover {
        color: #fff;
    }

        .trcg-fancy-link:hover::before {
            transform: scaleX(1);
            transform-origin: bottom left;
        }
