:root { height: 100%; width: 100%; color: white; background: black; } body { height: 100%; width: 100%; margin: 0; font-family: sans-serif; } #root { display: contents; } .flex { display: flex; } .flex-col { flex-direction: column; } .items-stretch { align-items: stretch; } .justify-center { justify-content: center; } .h-full { height: 100%; } .flex-shrink-0 { flex-shrink: 0; } .items-center { align-items: center; } .w-full { width: 100%; } .gap-8 { gap: 2rem; } .flex-auto { flex: auto; } .bg-black { background-color: black; } select { color: inherit; font: inherit; border: 0; } .h-12 { height: 3rem; } .px-4 { padding-left: 1rem; padding-right: 1rem; } .px-8 { padding-left: 2rem; padding-right: 2rem; } .gap-4 { gap: 1rem; }