@keyframes explore { 
    12.5% { 
        transform: translate(100%, 0%);
    }
    25% {
        transform: translate(0%, 50%);
    }
    37.5% {
        transform: translate(100%, 80%);
    }
    50% {
        transform: translate(50%, 80%);
    }
    62.5% {
        transform: translate(50%, 0%);
    }
    75% {
        transform: translate(50%, 50%);
    }
    87.5% {
        transform: translate(0%, 50%);
    }
    100% {
        transform: translate(100%, 50%);
    }
}

@keyframes loading-cube-logo {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-black: 0, 0, 0;
    --color-white: 255, 255, 255;
}



body {
    font-size: 18px;
    font-family: sans-serif;
}

.g-color-white {
    color: rgb(var(--color-white));
}

.u-color-black {
    background-color: rgb(var(--color-black)) !important;
}

.u-z-index-10 {
    z-index: 10 !important;
}

.mt-05 {
    margin-top: 0.5rem;
}

.bg-container {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 5;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

    width: 100%;
    height: 100%;

    background-color: rgba(var(--color-black), 0.65);
}


.loading-animation {
    animation-name: loading-cube-logo;
    animation-duration: 3s;
    animation-iteration-count: infinite;
}

.message-wrapper {
    position: relative;
    top: -10%;

    max-width: 30rem;
    width: 100%;

    margin: 1rem;
    padding: 1rem;

    border-radius: 0.4rem;

    background-color: rgba(var(--color-white), 0.65);

    text-align: center;
}

.image-wrapper {
    position: relative;

    max-width: 20rem;
    width: 100%;

    height: 20rem;
}

.image-wrapper img {
    width: 10rem;

    position: absolute;
    top: 0;
    left: 0;

    animation-name: explore;
    animation-duration: 12s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
    animation-direction: alternate;
}
