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


@import url('https://fonts.googleapis.com/css2?family=League+Spartan:wght@100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

html,
body {
    max-width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

.loader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.7);
    transition: opacity 0.75s, visibility 0.75s;
    z-index: 9999;
}

.loader-hidden {
    opacity: 0;
    visibility: hidden;
}

::selection {
    background: rgb(76 29 149);
    color: rgb(250 245 255);
}

::-moz-selection {
    background: rgb(76 29 149);
    color: rgb(250 245 255);
}
