@font-face {
    font-family: Neuropolitical;
    src: url("../assets/neuropolitical.otf");
}

@font-face {
    font-family: Saira;
    src: url("../assets/Saira-VariableFont_wdth\,wght.ttf");
}


:root {
    --bg-color: #eeeeee;
    --set-border-color: #E6E6E6;
    --set-bg-color: white;
}

body {
    font-family: Saira, oboto, Helvetica, sans-serif;
}

.notif-bar {
    position: absolute;
    top: 15px;
    left: 15px;
    height: fit-content;
    width: fit-content;
    padding: 10px;
    font-size: 20px;
    font-weight: bold;

    background-color: lightblue;
    border-bottom-right-radius: 10px;

    display: none;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
}

.ninja-link {
    text-decoration: none;
    cursor: pointer;
    color: black;
}

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

.sggt {
    font-family: Neuropolitical;
}

.center {
    text-align: center;
}

/* ----- FORMS ------ */

.button {
    background-color: #1460f7;
    border: none;

    border-radius: 10px;

    font-family: Roboto, Helvetica;
    font-weight: bold;
    color: white;
    min-width: 45px;
    font-size: 100%;
}

.big-button {
    width: 50%;
    max-width: 20vw;

    height: 5vh;

    font-size: 2.5vh;
}

.button:hover {
    background-color: #6F90FF;
    cursor: pointer;
}

.input {
    border: solid 1px gray;
    border-radius: 10px;
    background-color: white;
    font-size: 100%;
    
    font-family: Consolas, 'Courier New', Courier, monospace;
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.horizontal {
    flex-direction: row;
}

.vertical {
    flex-direction: column;
}

a {
    text-decoration: none;
}