@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}


@-webkit-keyframes rotate {
    from {
        -webkit-transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(360deg);
    }
}

body {
    margin: 0;
    height: 100%;
    background: #202020;

    background-size: 100% 100%;
}

.center {
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.contain {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.stretch {
    display: block;
    width: 100%;
    height: 100%;
}

.cover {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bottom {
    position: absolute;
    bottom: 0;
    left: 50%;
    -ms-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
}

.bottomLeft {
    position: absolute;
    bottom: 0;
    left: 0;
}

.bottomRight {
    position: absolute;
    bottom: 0;
    right: 0;
}

@media (prefers-color-scheme: dark) {
    body {
        margin: 0;
        height: 100%;
        background: #202020;

        background-size: 100% 100%;
    }
}

#loading {
    width: 100vw;
    height: 100vh;
    display: flex; /* Default Axis is X*/
    flex-wrap: wrap;
    justify-content: center; /* Main Axis */
    align-items: center; /* Cross Axis */
}

.card {
    position: relative;
    height: 175px;
    width: 175px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    z-index: 1;
    border-radius: 50%;
}

.card::before {
    content: "";
    height: 180px;
    width: 175px;
    background: linear-gradient(90deg, #d8d8d8, #161616);
    position: absolute;
    z-index: 2;
    animation: rotate 2.5s linear infinite;
}

.card::after {
    content: "";
    height: 165px;
    width: 165px;
    background: #202020;
    position: absolute;
    z-index: 2;
    border-radius: 50%;
}

.logo {
    z-index: 10;
}

.firebase-emulator-warning {
    background-color: transparent !important;
    border: none !important;
    color: #f7e1b5 !important;
}
