:root {
    --brown-color:#0b0a03;
    --brown-color-semi-transparent:rgba(12, 11, 3, 0.95);
    --yellow-color: #f5e64b;
    --light-yellow-color: #f5f0cd;
}


body {
    background-color: var(--brown-color);
    margin: 0;
display: flex;
    flex-direction: column;
    min-height: 100vh;
}

html, body{
    font-family: 'Scada', sans-serif;
    position: relative;
    background-color: var(--brown-color);
    overscroll-behavior-y: none;
    overscroll-behavior-x: none;
}
a{
    text-decoration: none;
}

article{ flex:1; }

button:hover{
cursor: pointer;
}
footer{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    color: white;
    background-color: var(--brown-color);
    padding: 1vh;
    font-size: small;
    min-font-size: small;
}
