body {
    background: rgba(26, 32, 44);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 75vh;
}

.svg_github {
    width: 2rem;
}

.card_content {
    background-color: #2d3748;
    min-width: 400px;
    max-width: 400px;
    min-height: 115px;
    max-height: 115x;
}

.text-white {
    color: white;
}

.text-gray {
    color: rgba(203, 213, 224);
}

.bold {
    font-weight: bold;
}

.flex {
    display: flex;
}

.card-img-top {
    max-width: 250px;
    margin-bottom: 6px;
}

.row {
    margin: 0;
    max-width: 800px;
}
.custom-svg {
    width: 24px; 
    height: 24px; 
}
/* .container_card{
 
} */
footer {
    color: rgba(203, 213, 224);
    font-weight: bold;
    position:fixed;
    bottom: 0; 
    left: 50%;
    transform: translateX(-50%); 
    margin-bottom: 5px;

}


@keyframes slideFromRight {
    0% {
        opacity: 0;
        transform: translateX(100%);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideFromLeft {
    0% {
        opacity: 0;
        transform: translateX(-100%);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.card_content.slide-right {
    animation: slideFromRight 0.5s ease-in-out;
}

.card_content.slide-left {
    animation: slideFromLeft 0.5s ease-in-out;
}


/* Estilos para telas menores que 600px (exemplo: smartphones em modo retrato) */
@media (max-width: 600px) {
    .card_content {
        min-width: 389px;
        max-width: 389px;
    }
    footer {
        margin-bottom: 0px;
        width: 100%;
    }
    .logo {
        display: flex;
        justify-content: center; /* Centralizar horizontalmente */
        align-items: center; /* Centralizar verticalmente */
        
    }
    
    .logo img {
        max-width: 100%; /* Certifique-se de que a imagem não ultrapasse o tamanho da div */
        height: auto; /* Mantenha a proporção da imagem */
    }
}

