@charset "UTF-8";
/* Estilos específicos para a tela de carregamento */
body {
    /* O background vem do styles.css */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    font-family: sans-serif;
    color: white;
}

span{
    margin-top: 2rem;
}
.copy {
    text-decoration: none;
    font-size: 0.7rem;
    color: whitesmoke;
    border-radius: 20px;
    background-color: rgba(0, 0, 0, 0.4);
    padding: 0.1rem 0.8rem 0.1rem 0.8rem;
}
.copy:hover {
    background-color: #000;
}

.loading-container {
    position: relative;
    width: 150px;
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.shape {
    font-size: 5rem;
    font-weight: bold;
    position: absolute;
    text-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.shape.x {
    left: 20px;
    animation: slideX 1.5s ease-in-out infinite alternate;
}

.shape.o {
    right: 20px;
    animation: slideO 1.5s ease-in-out infinite alternate;
}

@keyframes slideX {
    0% {
    transform: translateX(0) rotate(0deg);
    opacity: 0.5;
    }

    100% {
    transform: translateX(40px) rotate(180deg);
    opacity: 1;
    }
}

@keyframes slideO {
    0% {
    transform: translateX(0) scale(0.8);
    opacity: 0.5;
    }

    100% {
    transform: translateX(-40px) scale(1.2);
    opacity: 1;
    }
}

.loading-text {
    margin-top: 2rem;
    font-size: 1.2rem;
    letter-spacing: 0.2rem;
    text-transform: uppercase;
    animation: pulse 1s infinite;
}

@keyframes pulse {

    0%,
    100% {
    opacity: 0.6;
    }

    50% {
    opacity: 1;
    }
}