
@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap');

body {
    justify-content: center;
    align-items: center;
    background-color: black;
    color: white;
    font-family: 'Nunito Sans',Arial;
    scrollbar-color: white black;
}

.warn-message-box {
    position: fixed;
    right: 100px;
    left: 100px;
    top: 100px;
    bottom: 100px;

    background-color: black;
    z-index: 99999999;
    text-align: center;
    font-size: large;
}

.warn-message-box button {
    font-size: 20px;
}

button {
    background-color: black;
    border: solid;
    color: white;
    border-color:white ;
    border-width: 1px;
    transition: all 0.15s;
}

input {
    background-color: black;
    color: white;
    border: solid;
    border-color: white;
    border-width: 1px;
    transition: all 0.25s;
}

.top-bar input:focus {
    background-color: white;
    color: black;
}

button:hover {
    background-color: white;
    color: black;
}

button:active {
    background-color: white;
    opacity: 0.8;
    color: black;
}

p,h1,h2,h3{
    margin: 0;
}

.bordered {
    border: solid;
    border-color: white;
    border-width: 1px;

    background-color: black;

    padding: 5px;
    margin: 5px;
}