@font-face {
    font-family: "Noto Sans";
    font-style: normal;
    font-weight: 400;
    src: url("./NotoSans-Regular.ttf") format("truetype");
    font-display: swap;
}

* {
    color: inherit;
}

body {
    font-family: "Noto Sans", sans-serif;
    color: #131416;
    background-color: #ffffff;
}

.button {
    margin: 1%;
    padding: 0.4em;
    line-height: 0.9em;
    background: none;
    cursor: pointer;
}

.button-border {
    border-radius: 0.5em;
    border: 0.15em solid #131416;
}

.button-inactive {
    opacity: 0.5;
    cursor: default;
}

@media (prefers-color-scheme: dark) {
    body {
        color: #cddde5;
        background-color: #00111a;
    }

    .button-border {
        border-color: #cddde5;
    }
}
