body {
    width: 100%;
    /* align-items : center; */
    height: 100%;
    background-position: center center;

    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    /* background-color: green; */
    overflow: hidden;
    background-image:url('../images/field.png') ;
    background-size: 100% 100%;
}

#modal-overlay {
    backdrop-filter: blur(5px); /* Adjust the blur radius as needed */
    transition: opacity 0.3s ease;
}

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

/* width */
::-webkit-scrollbar {
    display: block;
    width: 2px;
    height: 80%;
    
}

/* Track */
/* ::-webkit-scrollbar-track {
    background: #ffffff;
    opacity: 0.2;
} */

/* Handle */
::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 5px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #555;
}