
/* GLOBAL CSS */

@font-face {
    font-family: "Silkscreen";
    src: url('../font/slkscr.ttf') format("truetype");
}

body {
    background-color: #232323;
    color: #86898b;
    /*color: white;*/
    font-family: 'Inconsolata', monospace;
    min-height: 100vh;
}
.table {
    color: #86898b;
}

h2 {
    color: #CF6A4C;
    font-size: 1.75rem;
    font-weight: bold;
    text-transform: uppercase;
}

h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0;
}

a {
    color: #CF6A4C;
}
a:hover {
    color: rgba(207, 106, 76, 0.6);
    text-decoration: none;
}

.container, .container-fluid {
    padding-top: 1rem;
}

.btn {
    color: white;
    background-color: #232323;
    border: none;
}
.btn:hover {
    color: white;
    background-color: #CF6A4C;
}
