.h-screen {
    height: 100vh;
}

.flex {
    display: flex;
}

.grid {
    display: grid;
}

.fixed {
    position: fixed;
}

.bg-white\/50 {
    background-color: rgba(255, 255, 255, .5);
}

.inset-0 {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

@keyframes fade-in {
    0% {
        opacity: 0
    }
    100% {
        opacity: 1
    }
}

.animate-fade-in {
    animation: fade-in .5s ease-out
}

@keyframes fade-out {
    0% {
        opacity: 1
    }
    93% {
        opacity: 1
    }
    99% {
        opacity: 0
    }
    100% {
        opacity: 0
    }
}

.animate-fast-fade-out {
    animation: fade-out 2.5s ease-out forwards
}

@keyframes highlight-in {
    0% {
        opacity: .8
    }
    100% {
        opacity: 1
    }
}

.animate-show-highlight {
    animation: highlight-in 1s ease normal forwards
}

.animate-fade-out-quickly {
    animation: fade-in .6s ease-out reverse forwards
}

@keyframes spin {
    to {
        transform: rotate(360deg)
    }
}

.animate-spin {
    animation: spin 1s linear infinite
}
.h-14 {
    height:3.5rem
}
.w-14 {
    width:3.5rem
}
.m-auto {
    margin:auto
}
.opacity-25 {
    opacity:.25;
}
.opacity-75 {
    opacity:.75;
}
