* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat','Ysabeau Infant', sans-serif;
}

.banner {
    width: 100%;
    height: 100vh;
  
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .banner video {
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .container-info {
    width: 768px;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    gap: 40px;
  }
  
  .imgPerfil-titulo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  
  .imgPerfil {
    width: 200px;
    height: 200px;
    border-radius: 100%;
  
    background-image: url('./assets/neymar.jpg');
    background-position: center;
    background-size: cover;
  
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .imgPerfil::before {
    content: "";
    position: absolute;
    width: 215px;
    height: 215px;
    background: linear-gradient(90deg, #ffdf00, #009c3b);
    z-index: -1;
    border-radius: 100%;
  }
  
  .imgPerfil-titulo h1 {
    position: relative;
    font-size: 50px;
    color: #fff;
    text-shadow: 2px 6px 3px #000000;
  }
  
  h1::before {
    content: "";
    position: absolute;
    width: 55px;
    height: 5px;
    background: linear-gradient(90deg, #ffdf00, #009c3b);
    bottom: 2px;
    left: 5px;
    border-radius: 4px;
  }
  
  .imgPerfil-titulo h1::after {
    content: "";
    position: absolute;
    bottom: 12px;
    right: -20px;
    background-image: url(./assets/verificado.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 20px;
    height: 20px;
  }
  
  
  /* Estilo dos links */
  .arvore-links {
    max-width: 768px;
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 20px;
  }
  
  .arvore-links a {
    width: 100%;
    padding: 10px;
  
    display: flex;
    align-items: center;
    gap: 5px;
  
    font-size: 20px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
  
    border-radius: 20px;
    background-color: #0200006e;
    color: #fff;
  }
  
  .arvore-links a:hover {
    background-color: #fff;
    color: #000;
  }
  
  .arvore-links a p {
    width: 90%;
  }
  
  .arvore-links a img {
    width: 30px;
  }
  
  /* Estilo da tabela */
  .secao-tabela {
    position: relative;
    width: 100%;
    height: 100vh;
    text-align: center;
  
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    gap: 40px;
    font-family: 'Monstserrat', sans-serif;
  
    background-image: url(./assets/imagem-de-fundo.jpg);
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
  }
  
  .secao-tabela h2 {
    font-size: 74px;
    color: #fff;
    text-shadow: 3px 6px 1px #000000;
  }
  
  
  .tabela th {
    font-size: 26px;
    background-color: #000000cc;
    color: #ffff;
    text-shadow: 2px 2px 1px #000000;
  }
  
  .tabela th, tr, td {
    padding: 20px;
  }
  
  .tabela td img {
    width: 30px;
  }
  
  .tabela tbody td:nth-child(1) {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .tabela tbody tr:nth-of-type(odd) {
    background-color: #ffffffcc;
    font-weight: 700;
    font-size: 18px;
    color: #000000;
  }
  
  .tabela tbody tr:nth-of-type(even) {
    background-color: #000000cc;
    font-weight: 700;
    font-size: 18px;
    color: #fff;
  }

  /* Responsividade para dispositivos menores */

  @media only screen and(min-width: 320px) and (max-width: 480px) {

    .banner {

        width: 100%;
        height: 100svh;
        display: flex;
        justify-content: center;
        align-items: center;

        margin: 20px;
    }

    .imgPerfil-titulo{

       font-size: 25px;
    }

    .imgPerfil {

        width: 100px;
        height: 100px;
    }

    .container-info{

        width: 434px;
    }

    .secao-tabela{

        width: 100%;
        height: 100svh;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .tabela {

        width: 80%
    }



  }

  /*  Fim da Responsividade para dispositivos menores */

/*   Responsividade para dispositivos medios */

  @media only screen and (min-width: 481px) and (max-width: 1024px) {

    
  }

/*  Fim da Responsividade para dispositivos medios */

  /*  Fim da Responsividade para dispositivos grandes */

  @media only screen and (min-width: 1025px) {


  }

    /*  Fim da Responsividade para dispositivos grandes */
