
body, html {
    margin: 0;
    padding: 0;
    cursor: url('/static/img/cursor.png'), auto;
    overflow: hidden; /* Para garantir que não apareça uma barra de rolagem */
    background-color:var(--color-primaria);
    color: var(--color-cinco);
    font-family: 'Poppins', sans-serif;
 
}
.flex {
    display: flex;
}
.loader {
    display: flex;
    justify-content: space-between;
    width: 80px;
}

.dot {
    width: 15px;
    height: 15px;
    background-color: #fff;
    border-radius: 50%;
    animation: bounce 1.5s infinite ease-in-out;
}

.dot:nth-child(2) {
    animation-delay: 0.3s;
}

.dot:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-15px);
    }
    60% {
        transform: translateY(-10px);
    }
}
a {
    cursor: pointer;
}

button {
    cursor: pointer; 
}

input[type="text"] {
    cursor: text; 
}


:root {
    --color-primaria:#000000;
    --color-secudaria: #161618;
    --color-tres: #212124;
    --color-quatro: #ffffff;
    --color-cinco: #818181;
}
header {
    position: fixed;
    background-color: var(--color-secudaria);
    width: 100%;
    z-index: 1000; /* Para garantir que o cabeçalho fique acima do conteúdo */
}

.navbar {
    background-color: var(--color-primaria) !important;
}

.navbar-brand i {
    margin-left: 8px;
}

.navbar-toggler {
    border: none;
}

.navbar-toggler-icon {
    background: var(--color-cinco);
}

.form-control {
    border: 1px solid var(--color-cinco);
}

.btn-light {
    background-color: var(--color-cinco);
    border: none;
    color: var(--color-tres);
}

#home {
    position: relative;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background-color: #161816;
    margin-top: 30px;
}
#box-windo{
    height: 470px;

    border: rgba(255, 255, 255, 0.719) solid 2px;
}
#user-circ {
    animation: status infinite 4s ease-in-out;
    transition: ease-out;
}

@keyframes status {
    
    0%{
        color: #28c940;

    }50%{
        color: #28c9408f;
    }
    
}
.background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0; /* Para ficar atrás da "janela" */
    overflow: hidden;
}

.ball {
    position: absolute;
    width: 100px;
    height: 100px;
    background: #ff5f57;
    border-radius: 50%;
    box-shadow: 0 0 20px #ff5f57;
    animation: move 5s linear infinite;

    pointer-events: none; /* Para garantir que o movimento das bolas não afete o conteúdo */
}
#ball1 {
    position: absolute;
    width: 100px;
    height: 100px;
    background: #ffbd2e;
    border-radius: 50%;
    box-shadow: 0 0 20px #ffbd2e;
    animation: move 5s linear infinite;

    pointer-events: none; /* Para garantir que o movimento das bolas não afete o conteúdo */
}
#ball2 {
    position: absolute;
    width: 100px;
    height: 100px;
    background: #28c940;
    border-radius: 50%;
    box-shadow: 0 0 20px #28c940;
    animation: move 5s linear infinite;
    pointer-events: none; /* Para garantir que o movimento das bolas não afete o conteúdo */
}


/* key frames */

.ball::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 99, 71, 0.5), rgba(255, 99, 71, 0) 90%);
    transform: translate(-50%, -50%);
    border-radius: 50%;
    animation: trail 5s linear infinite;
    opacity: 0.7;
}

#github-info {
    background-color: transparent;
    border: none;
    padding: 20px;
    width: 100%;
    height: 400px;
    border-radius: 10px;
    text-align: center;
}
.profile-pic {
    border-radius: 50%;
    width: 150px;
    height: 150px;
    object-fit: cover;
    margin-bottom: 15px;
}
.info {
    margin-bottom: 10px;
}
.info span {
    font-weight: bold;
}
.languages {
    margin-top: 20px;
}
.language {
    display: inline-block;
    margin: 5px;
    padding: 10px;
    background-color: var(--color-primaria);
    border-radius: 5px;
}










@keyframes trail {
    0% {
        width: 0;
        height: 0;
        opacity: 1;
    }
    100% {
        width: 150px;
        height: 150px;
        opacity: 1;
    }
}

/*  */
.window {
    position: relative;
    margin-top: 60px;
    width: 80%;
    max-width: 800px;
    background: #00000098;  
    backdrop-filter: blur(10px); /* Aplica desfoque ao que está atrás do contêiner */
    -webkit-backdrop-filter: blur(10px); /* Suporte para navegadores WebKit */
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
    z-index: 1; /* Para garantir que a "janela" fique acima do fundo */
    color: rgb(255, 255, 255);

    & .title {
        color: var(--color-primaria);
        padding-left: 20px;
    }
}

.window-header {
    background: rgba(255, 255, 255, 0.719);
    color: #fff;
    padding: 10px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;

    & i {
        font-size: 2rem;
    }
}

.window-controls {
    display: flex;
}

.control {
    width: 20px;
    height: 20px;
    background: #fff;
    border-radius: 50%;
    color: #007bff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 5px;
    cursor: pointer;
}

.control:hover {
    background: #ddd;
}

.window-content {
    padding: 20px;
  
}

.btn-primary {
    background: #007bff;
    color: #fff;
    padding: 0.5rem 1rem;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 1rem;
    display: inline-block;
}
#close {
    background-color: #ff5f57;
}

#minimize {
    background-color: #ffbd2e;
}

#maximize {
    background-color: #28c940;
}

.control:hover {
    opacity: 0.8;
}

@media (max-width: 768px) {
    .window {
        width: 95%;
        height: 900px;
        
    }
   
}
.no-scroll {
    overflow: hidden;
}
.search-container{
    display:flex;
}

.results {
    display: flex;
    flex-direction: column;
    margin-top: 10px;
    overflow-y: scroll;
    scrollbar-color: var(--color-secudaria);
    max-height:500px ;
}

.list-group{
    list-style: none;
}
#searchInput {
    margin-right: 10px; /* Espaçamento à direita do input */
}

#searchButton {
    margin-top: 0; /* Remove qualquer margem superior adicional */
}

.results.hidden {
    display: none;
}

