16 lines
247 B
CSS
16 lines
247 B
CSS
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
|
|
body, html {
|
|
background-color: #333339;
|
|
height: 100%;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
|
|
h1 {
|
|
text-align:center;
|
|
color: #00D9F7;
|
|
} |