html, body { height: 100%; }

body { background: white; margin: 0; padding: 0; font-family: 'Montserrat', sans-serif; }

body input { font-family: 'Montserrat', sans-serif; }

body h1, body h2, body h3, body h4, body h5 { font-weight: 300; margin: 0; }

main { height: 100%; background: lightgrey; width: 100%; text-align: center; height: 100%; display: flex; flex-direction: column; justify-content: center; gap: 20px; }

main hr { border: 0; border-bottom: 1px solid black; width: 80px; }

main input { padding: 5px; width: 30px; text-align: center; }

main .drink-container { border: 1px solid lightgrey; background: white; border-radius: 15px; width: 90%; margin: 0 auto; display: flex; padding: 50px 0; flex-wrap: wrap; gap: 30px; justify-content: center; }

main .drink-container .item { display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 10px; }

main .drink-container img { border: 1px solid lightgrey; max-width: 120px; }

main .actions { border: 1px solid lightgrey; border-radius: 15px; width: 90%; margin: 0 auto; padding: 20px 0; background: white; }

main .actions button { padding: 10px; background: white; border: 2px solid grey; border-radius: 15px; min-width: 200px; }

main .actions button:hover { cursor: pointer; background: lightgrey; }

.spinner { animation: rotate 2s linear infinite; z-index: 2; width: 50px; height: 50px; }

.spinner .path { stroke: #e95d58; stroke-linecap: round; animation: dash 1.5s ease-in-out infinite; }

@keyframes rotate { 100% { transform: rotate(360deg); } }

@keyframes dash { 0% { stroke-dasharray: 1, 150;
    stroke-dashoffset: 0; }
  50% { stroke-dasharray: 90, 150;
    stroke-dashoffset: -35; }
  100% { stroke-dasharray: 90, 150;
    stroke-dashoffset: -124; } }

main .status-message { display: flex; flex-direction: column; width: 400px; gap: 20px; margin: 0 auto; }

main .status-message .update { display: flex; flex-direction: column; align-items: center; gap: 20px; }
