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


.service-box {
    display: flex;
    flex-direction: column;
    height: 100%;
}
.service-box p {
    flex-grow: 1;
}
/* Stil za fiksiranje navbar-a */
.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: #18181b;
}
/* Stil za fiksiranje navbar menija */
#navbar-menu {
    position: fixed;
    top: 64px; /* Visina navbar-a */
    left: 0;
    width: 100%;
    z-index: 999;
    background-color: #18181b;
}
/* Ensure footer is at the bottom */
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
main {
    flex: 1;
}


.zinc{
    background-color: #18181b;
    color: #a6a6ab;
}

.teal {
    background-color: #0d9488;
    color: #ffffff;
}