﻿
* {
    box-sizing: border-box;
}

.btn-outline-light, .btn-outline-light.disabled, .btn-outline-light:disabled, .nav-tabs .nav-item > .btn-outline-light.nav-link:disabled {
    /* color: var(--bs-light-text-emphasis); */
    color: white !important;
}

body {
    position: relative;
    background-image: url('/images/background/img_bg_empty_chairs.jpeg');
    background-size: cover;
    background-position: bottom center;
    background-repeat: no-repeat;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    font-family: 'Ubuntu', sans-serif;
    height: 100vh;
    margin: 0;
}


p {
    font-size: 14px;
    font-weight: 100;
    line-height: 20px;
    letter-spacing: 0.5px;
    margin: 20px 0 30px;
}


.container {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
    position: relative;
    overflow: hidden;
    width: 768px;
    max-width: 100%;
    min-height: 500px;
}

footer {
    background-color: #222;
    color: #fff;
    font-size: 14px;
    bottom: 0;
    position: fixed;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 999;
}

    footer p {
        margin: 10px 0;
    }

    footer a {
        color: #3c97bf;
        text-decoration: none;
    }

.blinkMe {
    animation: blinker 1s linear infinite;
}
