@import url(https://fonts.googleapis.com/css?family=Anonymous+Pro);
@font-face {
    font-family: 'trixie-textregular';
    src: url('trixie-text-webfont.woff2') format('woff2'),
         url('trixie-text-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

a{
    text-decoration: none;
}

.navbar.fixed-top{
    box-shadow: 0px 4px 5px #3068ec;
}

#login{
    color: rgba(255,255,255,.75);
    font-family: 'Anonymous Pro', monospace;
}
#matricule{
    background: #232323;
    color: rgba(255,255,255,.75);
}

#rapport{
    background: left repeat-y url('old-paper.png');
    padding: 0.5em 2em;
    font-family: 'trixie-textregular';
    font-width: bold;
}

.navbar-brand{
    font-weight: bold;
    color: #212529;
    text-decoration: none;
}

.app-container .card{
    margin: 1rem;
    padding: 0;
    width: 9rem;
    background: #eee;
    box-shadow: 0px 0px 7px #408bff;
}
.app-container .card a{
    text-decoration: none;
    color: #212529;
}
.app-container .card-body{
    padding: 3px;
    text-align: center;
}

#restart-camera{
    border: 3px solid #445a80;
    color: #fff;
    margin: 0.5em;
    border-radius: 0;
}
.form-check-input:checked {
    background-color: #445a80;
}
#crash{
    position: absolute;
    display: none;
    top: 0;
    width: 100%;
    height: 100vh;
}

#loginpage, #reportpage, #crimepage{
    background: linear-gradient(to bottom, #0a264e 0%, #050a1e 100%);
    min-height: 100vh;
}

.profile-box{
    background-image: url('./img/corner-top-left2.png');
    background-position: top left;
    background-repeat: no-repeat;
    padding: 1.5rem;
    color: #fff;
    font-family: monospace;
}
.profile-box .card{
    background: transparent;
    border: none;
}
.profile-box .card-body{
    background-color: #38466047;
}
.profile-box img{
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.4);
    padding: 2px;
    border: 2px solid rgba(255, 255, 255, 0.6);
}

.cornerred-box{
    background-image: url('./img/corner-top-left.png'), url('./img/corner-bottom-right.png');
    background-position: top left, bottom right;
    background-repeat: no-repeat;
    padding: 1.5rem;
}
.inner-box{
    background: #38466047;
    padding: 1em;
    box-shadow: 0 0 6px #fff6;
}
.anim-typewriter::after{
    content: "|";
    font-family: 'Anonymous Pro', monospace;
    font-weight: bold;
    animation: blinker 0.8s steps(1, start) infinite;
}
.anim-typewriter.stop-typing::after{
    content: '';
    animation: none;
}

.bg-grid{
    background-size: 25px 25px;
    background-image: linear-gradient(to left, #445a8033 1px, transparent 1px), linear-gradient(to bottom, #445a8033 1px, transparent 1px);
}

.menu{
    background-image: url('./img/menu-top.png');
    background-position: top left;
    background-repeat: no-repeat;
    background-size: auto;
    padding-top: 1.5rem;
}
.menu a{
    color: #fff;
    margin-right: 2em;
    border: 1px solid #445a80db;
    padding: 0.3em;
}

.card{
    background: transparent;
    color: #fff;
}

#camera-display{
    border: 4px solid #597098;
}
#rapport{
    color: #000;
}
.blink {
    animation: blinker 0.5s steps(2, start) infinite;
}
@keyframes blinker {
    50% {
        opacity: 0;
    }
}