body{
  background-image: url('Imagens/fundo.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  font-family: 'lexend';
}

.team {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.team-member {
    text-align: center;
    background-color: #f5f5f5;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    transition: transform 0.5s ease-in-out;
    box-shadow: 3px, 3px, 4px black;
}

.team-member img {
    
    width: 160px;
    border-radius: 20%;
    margin-bottom: 10px;
    transition: transform 0.5s ease-in-out;
}

.team-member img:hover {
    transform: scale(1.1);
  }

  .team-member:hover {
    transform: scale(1.6);
  }

  button {
    background-color:rgb(75, 72, 72);
    border: none;
    color: rgb(255, 255, 255);
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;   
  
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 4px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    transition: 0.3s;
  }
  
  button:hover {
    background-color:rgb(184, 184, 196);
    color: black;
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
  }

  .centralizar{
    display: flex;
  justify-content: center;
  align-items: center;
  height: 10vh;
  }

  .titulo{
    font-family: 'lexend', sans-serif;
    font-size: 4rem;
    text-align: center;
    color: rgb(75, 72, 72);
    text-shadow: 6px 6px 8px rgba(255, 115, 0, 0.5);
  
  }

  dialog {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    border: 1px solid #ccc;
    padding: 20px;
    width: 600px;
    z-index: 999;
   
  }

  .h2{
    color: rgb(255, 255, 255);
    text-shadow: 6px 6px 8px rgba(255, 115, 0, 0.5);
  }
  