:root {
    --accent: #c62828;
    --accent-hover: #e53935;
    --background: rgb(5, 4, 10);
    --text: #f5f5f7;
    --subtle: #b3b3b8;
}

@font-face {
    font-family: "Mononoki Nerd";
    src: url("Mononoki/MononokiNerdFont-Regular.ttf") format("truetype");
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: "Mononoki Nerd";
    src: url("Mononoki/MononokiNerdFont-Italic.ttf") format("truetype");
    font-weight: 900;
    font-style: italic;
}

@font-face {
    font-family: "Mononoki Nerd";
    src: url("Mononoki/MononokiNerdFont-Bold.ttf") format("truetype");
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: "Mononoki Nerd";
    src: url("Mononoki/MononokiNerdFont-BoldItalic.ttf") format("truetype");
    font-weight: 900;
    font-style: italic;
}

body,
html {
    height: 100%;
    margin: 0;
    font-family: Mononoki Nerd, monospace;
    min-width: 330px;
    background-color: var(--background);
    color: var(--text);
}

h1 {
    font-size: 6pc;
    user-select: none;
    color: var(--accent);
}

.wrapper {
    display: flex;
    height: 100%;
    width: 100%;
    justify-content: space-between;
    flex-direction: column;
}

.incdec {
    height: 41%;
    width: 100%;
}

.timerstatus {
    height: 18%;
    width: 100%;
}

.incdecitem {
    float: left;
    height: 100%;
    width: 50%;
    color: var(--text);
    transition: background-color 0.2s ease;
}

.timerstatusitem {
    float: left;
    height: 100%;
    width: 33.333333333334%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--subtle);
    transition: background-color 0.2s ease;
}

.incdecitem:hover,
.timerstatusitem:hover {
    background-color: rgba(198, 40, 40, 0.1);
}

.timerstatusitem * {
    pointer-events: none;
}

h1:hover {
    background-color: transparent;
    color: var(--accent-hover);
}
