@tailwind base;
@tailwind components;
@tailwind utilities;

body {
    background-color: #020814;
    font-family: 'Noto Sans', serif;
    overflow: hidden;
}

html, body {
    display:flex;
    width:100%;
    height:100%;
    color: #fff;
}

.shadow {
    box-shadow: 0px 0px 4px 4px rgb(2, 8, 20);
}

.hide-scrollbar::-webkit-scrollbar {
    display: none;
}
  
.hide-scrollbar {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}