* {
    box-sizing: border-box;
}

body {
    font-family: system-ui, sans-serif;
    margin: 0;
    min-height: 100vh;
    background: #111;
    color: #fff;
}

main {
    width: min(100%, 600px);
    min-height: 100vh;
    margin: 0 auto;
    padding: 2rem 1.25rem;

    display: flex;
    flex-direction: column;
    align-items: center;
}

h1 {
    margin: 0 0 2rem;
}

#drink-counts {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 3rem;
}

#drink-actions {
    margin-top: 8vh;

    display: flex;
    justify-content: center;
}

.drink-button {
    width: 130px;
    height: 130px;
    font-size: 3.5rem;

    border: none;
    border-radius: 50%;

    background: #f5f5f5;

    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);

    -webkit-tap-highlight-color: transparent;

    touch-action: manipulation;
}

.drink-button:active {
    transform: scale(0.94);
}

#session-actions {
    margin-top: auto;
    padding-top: 3rem;
    padding-bottom: 2rem;
}

#reset-session {
    border: none;
    background: transparent;
    color: #bbb;
    font-size: 0.9rem;
    padding: 0.75rem 1rem;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

#reset-session:hover,
#reset-session:focus-visible {
    color: #fff;
}
