* {
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

p{
    line-height: 1.5;
}

.linktree-container{
    align-items: center;
    background: url(img/fundo-2.jpg) no-repeat bottom / cover;
    color: #fff;
    display: flex;
    flex-direction: column;
    height: 100vh;
    justify-content: center;
    position: relative;
    padding: 30px;
}

.linktree-nome{
    font-weight: 500;

    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.linktree-especialidades{
    font-weight: 300;
    font-size: .9rem;
}

.linktree-texto{
    color: #fff;
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 30px;
    width: 100%;
    max-width: 300px;
}

.linktree-container::before {
    background: rgba(0, 0, 0, 70%);
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    right: 0;
}

.linktree-img{
    border: 5px solid #fff;
    border-radius: 100%;
    margin-bottom: 20px;
    padding: 3px;
    width: 130px;
}

.linktree-lista-itens{
    display: flex;
    flex-direction: column;
    gap: 10px;
    list-style: none;
    width: 100%;
    max-width: 500px;
    margin-bottom: 30px;
}

.linktree-lista-item{
    border: 1px solid #777;
    background-color: rgba(0, 0, 0, 0.7);
    width: 100%;
    padding: 20px;
    text-align: center;
    border-radius: 50px;
    cursor: pointer;
}

.linktree-lista-item a{
   text-decoration: none;
   color: #fff;
}

.linktree-lista-item:hover{
    background: #607D8B;
}

.home-redes {
    display: flex;
    gap: 20px;
    list-style: none;
    margin-bottom: 25px;
}

.home-rede-img {
    height: 30px;
    color: #fff;
    fill: #fff;
}

.home-rede-img:hover{
    fill: #607D8B !important;
    color: #607D8B !important;
}

h1, p,img,ul{
    z-index: 500;
}


@media(max-height:700px){
    .linktree-container{
        height: 100%;
    }
}