html {
    scroll-behavior: smooth;
}

body {
    background-color: black;
    color: white;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.btn-primary {
    background-color: #189AB4;
    border: 1px solid #189AB4;
    border-radius: 0%;
    color: black;
    font-weight: 600;
}

.btn-signin-google
{
    display : none;
    opacity: 80%;
}
.btn-signin-google:hover {
    opacity: 100%;
}

#status {
    color: aqua;
    font-weight: 500;
    font-size: xx-large;
}

#description_message {
    background-color: #333;
    color: white;
}

/*custom scrollbar
/* width */
::-webkit-scrollbar {
    width: 6px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #189AB4;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: white;
}

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

/*custom scrollbar