html
{
    height: -webkit-fill-available;
    width: -webkit-fill-available;
}

body
{
    font-family: Arial, sans-serif;
    text-align: center;
    background-color: #222222;
    margin: 0;
    width: -webkit-fill-available;
    height: -webkit-fill-available;
}

h1
{
    color: #f9f9f9;
}

.system-load
{
    display: flex;
}
.info
{
    display: inline-block;
    width: fit-content;
}

.load-value
{
    display: block;
    min-width: max-content;
    max-width: 100%;
    padding: 10px 20px;
    border-radius: .5rem;
    background-color: #f9f9f9;
    box-shadow: 4px 4px 0px rgba(0, 0, 0, 0.2);
    margin: 0px 2.5px 5px 2.5px;
}

.buttons-container
{
    display: inline-grid;
}

.button {
    background-color: #f9f9f9;
    border: 0;
    border-radius: .5rem;
    box-sizing: border-box;
    color: #111827;
    font-family: "Inter var",ui-sans-serif,system-ui,-apple-system,system-ui,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
    font-size: 16px;
    font-weight: 600;
    line-height: 1.25rem;
    padding: .75rem 1rem;
    text-align: center;
    text-decoration: none #D1D5DB solid;
    text-decoration-thickness: auto;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    margin: 0px 2.5px 5px 2.5px;
    align-items: center;
    display: flex;
    gap: 12px;
}

.button:hover
{
    background-color: rgb(249,250,251);
}

.button:focus
{
    outline: 2px solid transparent;
    outline-offset: 2px;
}

.button:focus-visible
{
    box-shadow: none;
}

.button-icon
{
    width: 24px;
    height: 24px;
    object-fit: contain;
}

#useful
{
    margin-top: 25px;
}

@media (max-width: 768px)
{

    h1
    {
        font-size: 28px;
        margin-top: 10px;
        margin-bottom: 10px;
    }

    #useful
    {
        margin-top: 0 !important;
    }

    .button
    {
        font-size: 14px;
    }
}
