@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400..900&display=swap');

.wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100%;

    max-width: 1000px;
    margin: 0 auto;
}

main {
    flex: 1;
    padding: 1rem;
}

footer {
    margin-top: 2rem;
    text-align: center;
    padding: 1rem;
}

/* ----- */


.form-group {
    width: 100%;
}

/* flex flex-col gap-2 */

.inline-form {
    display: flex;
    flex-direction: row;
    gap: 1rem;
}

.block-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.block-form .p-message-text {
    margin-top: 0.25rem;
    padding-left: 0.25rem;
}

@media only screen and (max-width: 500px) {
    .inline-form {
        flex-direction: column;
    }
}

/*
Colors:
https://colorkit.co/color-shades-generator/00003f/
https://maketintsandshades.com/#00003f
https://mdigi.tools/color-shades/#00003f
*/

@font-face {
    font-family: 'Ethnocentric';
    src: url("/font/Ethnocentric Rg.otf") format("opentype");
    font-display: swap;
    font-style: normal;
    font-weight: normal;

}

@font-face {
    font-family: 'Ethnocentric';
    src: url("/font/Ethnocentric Rg It.otf") format("opentype");
    font-display: swap;
    font-style: italic;
    font-weight: normal;
}

* {
    box-sizing: border-box;
}

html {
    font-family: 'Roboto', sans-serif;
}

html, body, #app {
    height: 100%;
    margin: 0;
}

h1 {
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 0.2rem;
}

h2 {
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 0.15rem;
}

h3 {
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 0.1rem;
}

.font-orbitron {
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 0.05rem;
}

.font-ethnocentric {
    font-family: 'Ethnocentric', sans-serif;
    letter-spacing: 0.1rem;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-smoothing: antialiased;
    font-weight: 400;
}

input, select, textarea, button{font-family:inherit;}

body {
    background-color: #000000;
    background-repeat:no-repeat;
    background-position: center center;
    background-image: url(img/background.jpg);
    background-size: cover;
    background-attachment:fixed;
    color: #edf6f9;
}

a, span.link  {
    color: #ff7f00;
    text-decoration: none;
}

a:hover, span.link:hover {
    text-decoration: none;
    color: #ffa600;
}

a[href=""] {
    color: red !important;
    text-decoration: line-through !important;
    cursor: default;
}

button {
    cursor: pointer;
    font-weight: bold;
    font-family: 'Orbitron', sans-serif !important;
    letter-spacing: 0.075rem;
}

/*
button.btn-primary {
    color: #00004e;
    background-color: #b3b4c3;
}*/

/*
button.btn-secondary {
    background-color: #2b2b7b;
}*/
/*
button.btn-danger {
    background-color: #dd0300;
}*/

input, textarea {
    border: 1px solid #7c7c7c;
    border-radius: 0.25rem;
    background-color: #0d0d3f;
    color: #edf6f9;
    padding: 0.5rem 0.5rem;
}

table {
    border-collapse: collapse;
    width: 100%;
    /*background-color: #1f2041;
    background-color: #2b2b7b;*/
    background-color: #0d0d3f;
}

table th, table td {
    /*border: 1px solid #0d0e1c;*/
    border: 1px solid #050519;
    padding: 0.75rem 0.5rem;
    text-align: center;
}

table tr.highlight > td {
    font-weight: bold;
    background-color: #272788;
}

table.striped tr:nth-child(even) {
    /*background-color: #292a55;*/
    background-color: #141460;
}

table th {
    /*background-color: #15152c;*/
    background-color: #15153c;
}

.c-danger {
    color: #dd0300;
    /*border-color: #dd0300;*/
}

.mt-1 {
    margin-top: 0.25rem;
}

.mt-2 {
    margin-top: 0.5rem;
}

.block {
    display: block;
}

.w-full {
    width: 100%;
}

span.link:hover {
    text-decoration: underline;
}

.clickable {
    cursor: pointer;
}

.hover-red:hover {
    color: #dd0300;
}

.text-justify {
    text-align: justify;
}


/* Mobile */
@media only screen and (max-width: 800px)
{
    #app {
        overflow-wrap: break-word;
        word-wrap: break-word;
        word-break: break-word;
        hyphens: auto;
    }

    table th, table td {
        word-break: normal;
    }

    .desktop-only {
        display: none;
    }
}
@media only screen and (min-width: 801px)
{
    .mobile-only {
        display: none;
    }
}

