

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Boldonse&family=Roboto:ital,wght@0,100..900;1,100..900&family=Sigmar&family=Teko:wght@300..700&family=Winky+Sans:ital,wght@0,300..900;1,300..900&display=swap');






body {
    margin: 0;
    padding: 0;
    background-color: #0D0A0A;
    color: aliceblue;
}

.box {
    position: absolute;
    width: 100%;
    height: 100vh; /* Faz com que ocupe toda a altura da tela */
    background-image: url('img/fundo1.jpg'); /* Substitua pelo caminho da sua imagem */
    background-size: cover; /* Faz a imagem cobrir toda a div */
    background-position: center; /* Centraliza a imagem */
    background-repeat: no-repeat; /* Evita repetição da imagem */
}

.menu {
    box-sizing: border-box;
    position: relative;
    background-color: #0D0A0A;
    color: white;
    font-size: 30px;
    border-radius: 7px;
    margin: 50px;
    padding: 10px 15px;
    top: 80%;
    left: 47%;
    transform: translate(-50%,0);
    text-align: center;
    width: 30%;
}

a {
    
}

.ico_link {
    padding: 0 10px;
    width: 50px;
    cursor: pointer;
}

.barrinha {
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 5px;
    background-color: #0D0A0A;
}








.arvore a {
    color: white;
    text-decoration: none;
    background-color: aliceblue;
}


.arvore {
    font-size: 30px;
    position: absolute;
    padding: 20px 30px;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

.linksarvore {
    padding: 10px 20px;
    background-color: #1b1717;
    margin: 20px;
    border-radius: 7px;
    font-family: "Teko", sans-serif;
    border: solid 1px #F3793C;
    color: #F3793C;

}

.ico_arvore {
    width: 25px;
    transform: translate(-10px,3px);
}

.img_perfil {
    width: 50%;
    border-radius: 30px;
    border: solid 1px #F3793C;
    
}

h1 {
    font-family: "Teko", sans-serif;
    font-family: 35px;
    margin: 0;
    color: #F3793C;
}

/* Bordinhas */

.bordinha1 {
    width: 30%;
    z-index: -1;
    position: fixed;
    bottom: 0;
    left: 0;
}

.bordinha2 {
    width: 25%;
    z-index: -1;
    position: absolute;
    top: 0;
    right: 0;
    transform: rotate(180deg);
}



/* Celular */

@media screen and (max-width: 768px) { 

    .menu {
        width: 80%;
        text-align: center;
    }

}
