:root {
    --img-size: 100px;

    --alt: #804e00;
    --pils: #f5af2f;
    --radler: #ffe931;
    --pig: #512000;
    --wasser: #abd4f2;
    --cola: #000000;
    --bmw: #ffe6ad;
    --other: #b200ff;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
}

/* ===== HEADER ===== */
.header {
    display: grid;
    grid-template-columns: var(--img-size) 1fr var(--img-size);
    align-items: center;
    padding: 3px;
    box-sizing: border-box;
}

.header-image {
    width: var(--img-size);
    height: var(--img-size);
    object-fit: cover;
}

.header-image.left {
    justify-self: start;
}

.header-image.right {
    justify-self: end;
}

.header-center {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: var(--img-size);
    padding: 0 5px;
}

.header-title {
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    line-height: 1;
}

.header-subtitle {
    font-size: 0.8rem;
    text-align: left;
}

/* ===== ITEMS ===== */
.container {
    display: grid;
    gap: 20px;
}

.item {
    display: grid;
    grid-template-columns: 0.5fr 2fr 1fr 1fr 1fr;
    align-items: center;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

/* Text */
h2 {
    margin: 0;
    padding: 0 20px;
    font-size: 50px;
    font-weight: 100;
}

.counter-number {
    font-size: 70px;
    font-weight: bold;
}

/* Buttons */
button {
    width: 50px;
    height: 50px;
    font-size: 50px;
    font-weight: bold;
    border: none;
    background: white;
    cursor: pointer;
}

/* Colors */
.color-alt    { background: var(--alt); height: var(--img-size); }
.color-pils   { background: var(--pils); height: var(--img-size); }
.color-radler { background: var(--radler); height: var(--img-size); }
.color-pig    { background: var(--pig); height: var(--img-size); }
.color-wasser { background: var(--wasser); height: var(--img-size); }
.color-cola   { background: var(--cola); height: var(--img-size); }
.color-bmw    { background: var(--bmw); height: var(--img-size); }
.color-other  { background: var(--other); height: var(--img-size); }

/* Reset */
.reset-button button {
    width: 100%;
    padding: 15px;
    font-size: 24px;
    font-weight: bold;
    background-color: #808080;
    color: white;
    border-radius: 8px;
    cursor: pointer;
}