body {
    font-family: Arial, sans-serif;
    background-color: #737373;
  
    padding: 4%;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: auto;
    margin-bottom: auto;
}

.item {
    background-color: #ffffff;
    padding: 20px;
    text-align: center;
    margin-bottom: 20px;
    width: 600px; /* Largura desejada */
    border-radius: 60px; /* Adiciona bordas arredondadas */
    font-size: 18px;
    box-shadow: none; /* Remover sombra */
    cursor: default; /* Definir o cursor padrão */
}

.item:hover {
    cursor: pointer; /* Alterar o cursor para o estilo de "apontador" ao passar o mouse */
}


.item:first-child {
    position: relative;
}

.item:first-child img {
    display: block;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto;
}

.item:first-child .caption {
    text-align: center;
    margin-top: 10px;
}

.item a {
    color: #737373;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
}

.caption{
    margin-bottom: 30px;
}

.item2{
    margin-bottom: 10px;
}

.photo-container img{
    width: 350px;
}

.caption{
    color: #ffffff;
    text-transform: uppercase;
}

button{
    box-shadow: none !important;
    border: 0px;
}

@media screen and (max-width: 620px) {
    .container {
      flex-direction: column;
    }
    
    .photo-container img {
        width: 300px;
    }

    .caption {
      font-size: 18px;
    }
  
    .item {
      font-size: 14px;
      margin-bottom: 5px;
      width: 300px;
      
    }
    
    .contprincipal{
        padding: 30%;

    }
    /* Adicione outras alterações de estilo conforme necessário */
  }
  