@tailwind base;
@tailwind components;
@tailwind utilities;
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    background:transparent;
}
:root {
    --dark: rgb(30, 30, 30);
    --textColor:#E8F9FD;
  }
body{
    background: var(--dark);
    color: var(--textColor);
    overflow: hidden;
    overflow-y: scroll;
}
a{
    text-decoration: none;
    color: var(--textColor);
}

.center{
    display: flex;
    justify-content: center;
    align-items: center;
}