@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@200&display=swap');

body{
    margin: 0;
    padding: 0;
    font-family: "nunito", "Roboto", "Helvetica", "Arial", sans-serif;
    color: white; 
    background-color: #030023;
}

.caixa{
    display: flex;
}

.barra-lateral{
    width: 200px;
    height: 100%;
    box-shadow: 0 0 10px rgb(145, 8, 170);
    background-color: #030023;
    display: flex;
    flex-direction: column;
    justify-content: space-between; 
    align-items: center;
    position: fixed;
}
.conteudo{
    margin-left: 200px;
    width: calc(100% - 200px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.apresentacao{
    margin: 10vh 0 20vh;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #ffffffb6;
    border-radius: 30px;
    color: rgb(0, 0, 0);
}
.apresentacao img{
    max-width: 30vh;
    max-height: 30vh;
    border-radius: 50%;
    border: 3px solid rgb(255,255,255);
}
.apresentacao h1{
    font-size: 5vh;
    font-weight: bold;
    margin-top: 20px;
    text-align: center;
}
.apresentacao hr{
    width: 100%;
    margin: 5px;
    background-color: rgb(0, 0, 0);
    border: 0.5px solid rgb(0, 0, 0);
}

#Sobremim{
    width: 100%;
    margin-top: 20px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #ffffff;
    color: rgb(0, 0, 0);
}
#sobremim p{
    font-size: 2.5vh;
    margin: 0;
}
.texto-sobre{
    width: 75%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #ffffff;
    color: rgb(0, 0, 0);
    text-align: center;
}
.fun-facts{
    list-style: none;
}
.fun-facts li{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    margin: 10px;
}
.fun-facts a{
    font-weight: bold;
    text-decoration: underline;
    color: rgb(0, 0, 0);
    transition: ease 0.5s;
}
.fun-facts a:hover{
    transform: scale(1.3);
}
.fun-facts p{
    font-size: 2.5vh;
    margin: 0;
}
.footer{
    padding-top: 20px;
    width: 100%;
    background-color: #ffffff;
    color: #000000;
    font-weight: bold;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
}

.dados{
    width: 100%;
    max-height: 30%;
    background-color: #030023;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    position: relative;
}
.imagem-dados{
    margin-top: 20px;
    width: 125px;
    height: 125px;
    border-radius: 50%;
    background-color: rgb(255, 255, 255);
    padding: 3px;

}
.imagem{
    width: 125px;
    height: 125px;
    border-radius: 50%;
    background-color: #fff;
}
.texto-dados{
    margin: 10px;
    padding-top: 5px;
    padding-bottom: 5px;
    width: 100%;
    background-color: rgba(132, 42, 150, 0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
}
.texto-dados h1{
    font-size: 18px;
    font-weight: bold;
    margin: auto;
}
.texto-dados p{
    margin: auto;
    font-size: 14px;
    font-weight: bold;
}
.barra-lateral hr{
    width: 100%;
    margin: auto;
    background-color: rgb(255, 255, 255);
    border: 2px solid rgb(255, 255, 255);
}
.navegacao{
    width: 100%;
    height: 75%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}
.navegacao ul{
    margin: auto;
    padding-top: 10px;
    padding-left: 0px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}
.navegacao li{
    margin: auto;
    padding-top: 10px;
    padding-left: 0px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    list-style: none;
}
.navegacao a{
    text-decoration: none;
    color: rgb(255, 255, 255);
    font-size: 18px;
    font-weight: bold;
}


.sociais{
    margin: auto;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;

}
.sociais li{
    margin: 5px;
    list-style: none;

}
.sociais a{
    color: rgb(0, 0, 0);
    text-decoration: none;
    transition: ease 0.5s;
}
.sociais a:hover{
    color: rgb(0, 247, 255);
    transform: scale(1.3);
}

#Projetos{
    width: 100%;
    margin-top: 20px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    background-color: #ffffff;
    color: rgb(0, 0, 0);
}
#projetos a{
    font-size: 2.5vh;
    font-weight: bold;
    text-decoration: underline;
    color: rgb(0, 0, 0);
}
.lista_projetos{
    width: 75%;
    display: flex;
    flex-direction: row;
    flex-shrink: 0;
    justify-content: space-around;
    align-items: stretch;
}
.projetos{
    width: 350px;
    margin: 20px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: baseline;
    background-color: rgb(132, 42, 150);
    color: rgb(0, 0, 0);
    font-weight: bold;
    border-radius: 30px;
    box-shadow: 0 0 10px #4fc3dc;
    align-items: flex-start;
}
.projetos p{
    font-size: 2.5vh;
}
.projetos a{
    text-decoration: underline;
    color: rgb(0, 0, 0);
}

/* animação background */
.container{
    z-index: -100;
    width: calc(100% - 200px);
    left: 200px;
    position: absolute;
}
.bolhas{
    position: relative;
    display: flex;
    flex-flow: wrap;
}
.bolhas span{
    position: relative;
    width: 30px;
    height: 30px;
    background-color: rgb(241, 9, 241);
    border-radius: 50%;
    margin: 0 4px;
    box-shadow: 0 0 0 10px rgb(241, 9, 241, 0.44),
                0 0 50px rgb(241, 9, 241),
                0 0 100px rgb(241, 9, 241);
    animation: animate 15s linear infinite;
    animation-duration: calc(125s / var(--i));
}
.bolhas span:nth-child(even){
    background-color: #4fc3dc;
    box-shadow: 0 0 0 10px #4fc3dc44,
    0 0 50px #4fc3dc,
    0 0 100px #4fc3dc;
}
@keyframes animate{
    0%{
        transform: translateY(120vh) scale(0);
    }
    100%{
        transform: translateY(-10vh) scale(1);
    }
}

.barra-lateral a{
    transition: ease-in-out 0.5s;
}
.barra-lateral a:hover{
    text-decoration: underline;
    transform: scale(1.2);
}

@media screen and (max-width: 1000px){
    .container{
        width: calc(100% - 100px);
        left: 100px;
    }
    .projetos{
        align-items: center;
        justify-content: center;
    }
    .lista_projetos{
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .lista_projetos p, .lista_projetos h1{
        text-align: center;
    }
    .lista_projetos p{
        font-size: 2vh;
    }
    .lista_projetos h1{
        font-size: 2.5vh;
    }

    #Sobremim{
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
    }
    
}
@media screen and (max-width: 650px){
    .barra-lateral{
        display: none;
    }
    .conteudo{
        width: 100%;
        margin: 0;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
    }
    .container{
        width: 100%;
        left: 0;
    }
}