@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');

/*SUCCESS = "#28a745";
DANGER = "#dc3545";
WARNING = "#ffc107";
PRIMARY = "#007bff";
ECONDARY = "#6c757d";
DARK = "#343a40";
INDIGO = "#6610f2";
LIGHT = "#f8f9fa";*/

html {
    font-size: 16px;
}

@media (min-width: 768px) {
    html {
        font-size: 18px;
    }
}

html {
    position: relative;
    min-height: 100%;
}

body {
    /*font-family: 'Roboto', sans-serif;*/
    font-family: 'Arial', sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
    background-color: #f8f9fa;
    color: #343a40;
    /*margin-bottom: 60px;*/
}

    /* Dark mode styles */
    body.dark-mode {
        background-color: #0d4077;
        color: #f8f9fa;
    }

h1, h2, h3, h4, h5, h6, p {
    color: inherit;
}

a {
    color: inherit; /* blue colors for links too */
    text-decoration: inherit; /* no underline */
}

    a:hover {
        color: #dc3545;
    }

.content {
    flex: 1;
    padding: 20px;
}

.user-icon {
    height: 40px;
    width: 40px;
    background-color: #212529;
    color: #fff;
    border-radius: .25rem;
    margin: .25rem;
    cursor: pointer;
}

.bg-thot {
    background-color: #f8f9fa;
}

.dark-mode .bg-thot {
    background-color: #0d4077;
}

.text-thot {
    color: #343a40;
}

.dark-mode .text-thot {
    color: #f8f9fa !important;
}

.highlight {
    background: #136a8a; /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #267871, #136a8a); /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #267871, #136a8a); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    color: white;
    padding: 1rem;
    border-radius: 1rem;
    margin-bottom: 2rem;
}

.dark-mode .highlight {
    background-color: #343a40;
    padding: 1rem;
    border-radius: 1rem;
    margin-bottom: 2rem;
}

.ach-bg {
    /*background-color: #eaab00;*/ /* gold */
    background: linear-gradient(90deg, rgba(234,188,0,1) 0%, rgba(234,172,0,0.9641106442577031) 35%, rgba(234,153,0,1) 100%);
}

.ach-text {
    color: #eaab00; /* gold */
}

.ach-wrapp {
    width: 100%;
    margin: 0 auto;
    padding: 2px;
    background-color: #eaab00; /* gold */
    /* Single pixel data uri image http://jsfiddle.net/LPxrT/ 
    /* background-image: gold, gold, white */
    background-image: url('data:image/gif;base64,R0lGODlhAQABAPAAAOqrAP///yH5BAAAAAAALAAAAAABAAEAAAICRAEAOw=='),url('data:image/gif;base64,R0lGODlhAQABAPAAAOqrAP///yH5BAAAAAAALAAAAAABAAEAAAICRAEAOw=='), url('data:image/gif;base64,R0lGODlhAQABAPAAAP///////yH5BAAAAAAALAAAAAABAAEAAAICRAEAOw==');
    background-repeat: no-repeat;
    background-size: 0 2px, 0 100%, 0% 2px;
    background-position: top center, top center, bottom center;
    -webkit-animation: drawBorderFromCenter 2s;
}

/* Chrome, Safari, Opera */
@-webkit-keyframes drawBorderFromCenter {
    0% {
        background-size: 0 2px, 0 0, 100% 100%;
    }

    20% {
        background-size: 100% 2px, 100% 0, 100% 100%;
    }

    66% {
        background-size: 100% 2px, 100% 98%, 100% 100%;
    }

    99% {
        background-size: 100% 2px, 100% 98%, 0 2px;
    }
}

.ach-content {
    background: white;
    padding: 2em;
    text-align: center;
    text-transform: uppercase;
}

/*GAME*/
